Skip to content

Commit c8dabce

Browse files
authored
Release: v7.5.0 (#772)
SUNDIALS Release v7.5.0
1 parent 64fb55b commit c8dabce

43 files changed

Lines changed: 161 additions & 158 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# SUNDIALS Changelog
22

3-
4-
## Changes to SUNDIALS in release X.Y.Z
3+
## Changes to SUNDIALS in release 7.5.0
54

65
### Major Features
76

@@ -31,7 +30,7 @@ in any order.
3130
Fixed a bug in how MRIStep interacts with an MRIHTol SUNAdaptController object
3231
(the previous version essentially just reverted to a decoupled multirate
3332
controller). Removed the upper limit on `inner_max_tolfac` in
34-
`SUNAdaptController_SetParams_MRIHTol`.
33+
`SUNAdaptController_SetParams_MRIHTol`.
3534

3635
The shared library version numbers for the oneMKL dense linear solver and
3736
matrix as well as the PETSc SNES nonlinear solver have been corrected.
@@ -72,9 +71,6 @@ scale step matched the given status filter. Fixed an additional bug in
7271
`get_history` with MRI-GARK methods where values would not be extracted from a
7372
fast time scale integration associated with an embedding.
7473

75-
### Deprecation Notices
76-
77-
7874
## Changes to SUNDIALS in release 7.4.0
7975

8076
### New Features and Enhancements

CITATIONS.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ they are using rather than the combined SUNDIALS online guide:
6969
author = {Daniel R. Reynolds and David J. Gardner and Carol S. Woodward and Cody J. Balos},
7070
title = {User Documentation for ARKODE},
7171
year = {2025},
72-
note = {v6.4.0}
72+
note = {v6.5.0}
7373
}
7474
```
7575

@@ -78,7 +78,7 @@ they are using rather than the combined SUNDIALS online guide:
7878
author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward},
7979
title = {User Documentation for CVODE},
8080
year = {2025},
81-
note = {v7.4.0}
81+
note = {v7.5.0}
8282
}
8383
```
8484

@@ -87,7 +87,7 @@ they are using rather than the combined SUNDIALS online guide:
8787
author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward},
8888
title = {User Documentation for CVODES},
8989
year = {2025},
90-
note = {v7.4.0}
90+
note = {v7.5.0}
9191
}
9292
```
9393

@@ -96,7 +96,7 @@ they are using rather than the combined SUNDIALS online guide:
9696
author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward},
9797
title = {User Documentation for IDA},
9898
year = {2025},
99-
note = {v7.4.0}
99+
note = {v7.5.0}
100100
}
101101
```
102102

@@ -105,7 +105,7 @@ they are using rather than the combined SUNDIALS online guide:
105105
author = {Radu Serban and Cosmin Petra and Alan C. Hindmarsh and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward},
106106
title = {User Documentation for IDAS},
107107
year = {2025},
108-
note = {v6.4.0}
108+
note = {v6.5.0}
109109
}
110110
```
111111

@@ -114,6 +114,6 @@ they are using rather than the combined SUNDIALS online guide:
114114
author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward},
115115
title = {User Documentation for KINSOL},
116116
year = {2025},
117-
note = {v7.4.0}
117+
note = {v7.5.0}
118118
}
119119
```

CMakeLists.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ include(FindPackageHandleStandardArgs)
5252
# Set some variables with info on the SUNDIALS project
5353
set(PACKAGE_BUGREPORT "sundials-users@llnl.gov")
5454
set(PACKAGE_NAME "SUNDIALS")
55-
set(PACKAGE_STRING "SUNDIALS 7.4.0")
55+
set(PACKAGE_STRING "SUNDIALS 7.5.0")
5656
set(PACKAGE_TARNAME "sundials")
5757

5858
# Set SUNDIALS version numbers
@@ -61,7 +61,7 @@ message(STATUS "SUNDIALS_GIT_VERSION: ${SUNDIALS_GIT_VERSION}")
6161

6262
# (use "" for the version label if none is needed)
6363
set(PACKAGE_VERSION_MAJOR "7")
64-
set(PACKAGE_VERSION_MINOR "4")
64+
set(PACKAGE_VERSION_MINOR "5")
6565
set(PACKAGE_VERSION_PATCH "0")
6666
set(PACKAGE_VERSION_LABEL "")
6767

@@ -77,37 +77,37 @@ endif()
7777

7878
# Specify the VERSION and SOVERSION for shared libraries
7979

80-
set(arkodelib_VERSION "6.4.0")
80+
set(arkodelib_VERSION "6.5.0")
8181
set(arkodelib_SOVERSION "6")
8282

83-
set(cvodelib_VERSION "7.4.0")
83+
set(cvodelib_VERSION "7.5.0")
8484
set(cvodelib_SOVERSION "7")
8585

86-
set(cvodeslib_VERSION "7.4.0")
86+
set(cvodeslib_VERSION "7.5.0")
8787
set(cvodeslib_SOVERSION "7")
8888

89-
set(idalib_VERSION "7.4.0")
89+
set(idalib_VERSION "7.5.0")
9090
set(idalib_SOVERSION "7")
9191

92-
set(idaslib_VERSION "6.4.0")
92+
set(idaslib_VERSION "6.5.0")
9393
set(idaslib_SOVERSION "6")
9494

95-
set(kinsollib_VERSION "7.4.0")
95+
set(kinsollib_VERSION "7.5.0")
9696
set(kinsollib_SOVERSION "7")
9797

9898
set(cpodeslib_VERSION "0.0.0")
9999
set(cpodeslib_SOVERSION "0")
100100

101-
set(nveclib_VERSION "7.4.0")
101+
set(nveclib_VERSION "7.5.0")
102102
set(nveclib_SOVERSION "7")
103103

104-
set(sunmatrixlib_VERSION "5.4.0")
104+
set(sunmatrixlib_VERSION "5.5.0")
105105
set(sunmatrixlib_SOVERSION "5")
106106

107-
set(sunlinsollib_VERSION "5.4.0")
107+
set(sunlinsollib_VERSION "5.5.0")
108108
set(sunlinsollib_SOVERSION "5")
109109

110-
set(sunnonlinsollib_VERSION "4.4.0")
110+
set(sunnonlinsollib_VERSION "4.5.0")
111111
set(sunnonlinsollib_SOVERSION "4")
112112

113113
set(sundomeigestlib_VERSION "1.0.0")

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![track SUNDIALS downloads](https://github.com/sundials-codes/sundials-download-tracker/actions/workflows/nightly.yml/badge.svg)](https://github.com/sundials-codes/sundials-download-tracker/actions/workflows/nightly.yml)
44

5-
### Version 7.4.0 (Jun 2025) ###
5+
### Version 7.5.0 (Sep 2025) ###
66

77
**Center for Applied Scientific Computing, Lawrence Livermore National Laboratory**
88

doc/arkode/guide/source/Introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ require a linear solver, ARKODE may use a variety of SUNLinearSolver modules
129129
provided with SUNDIALS, or again may utilize a user-supplied module.
130130

131131

132-
Changes to SUNDIALS in release X.Y.Z
132+
Changes to SUNDIALS in release 6.5.0
133133
====================================
134134

135135
.. include:: ../../../shared/RecentChanges.rst

doc/arkode/guide/source/Usage/LSRKStep/User_callable.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ Allowable Method Families
221221
* *ARK_DEE_FAIL* if the call to :c:func:`SUNDomEigEstimator_SetATimes`
222222
failed
223223

224-
.. versionadded:: x.y.z
224+
.. versionadded:: 6.5.0
225225

226226
.. note::
227227

@@ -328,7 +328,7 @@ Allowable Method Families
328328
* *ARK_SUCCESS* if successful
329329
* *ARK_MEM_NULL* if ``arkode_mem`` was ``NULL``.
330330

331-
.. versionadded:: x.y.z
331+
.. versionadded:: 6.5.0
332332

333333
.. note::
334334

@@ -353,7 +353,7 @@ Allowable Method Families
353353
* *ARK_DEE_FAIL* if the call to
354354
:c:func:`SUNDomEigEstimator_SetNumPreprocessIters` failed.
355355

356-
.. versionadded:: x.y.z
356+
.. versionadded:: 6.5.0
357357

358358
.. note::
359359

@@ -440,7 +440,7 @@ Optional output functions
440440
* *ARK_MEM_NULL* if the LSRKStep memory was ``NULL``
441441
* *ARK_ILL_INPUT* if ``nfeDQ`` is illegal
442442

443-
.. versionadded:: x.y.z
443+
.. versionadded:: 6.5.0
444444

445445
.. note::
446446

@@ -461,7 +461,7 @@ Optional output functions
461461
* *ARK_MEM_NULL* if the LSRKStep memory was ``NULL``
462462
* *ARK_ILL_INPUT* if ``num_iters`` is illegal
463463

464-
.. versionadded:: x.y.z
464+
.. versionadded:: 6.5.0
465465

466466

467467
.. _ARKODE.Usage.LSRKStep.Reinitialization:

doc/arkode/guide/source/Usage/User_callable.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ Set the checkpointing step index (for adjoint) :c:func:`ARKodeSetAdjointChec
989989
File-based options are not yet supported, so the ``file_name`` argument
990990
should be set to either ``NULL`` or the empty string ``""``.
991991

992-
.. versionadded:: x.y.z
992+
.. versionadded:: 6.5.0
993993

994994

995995
.. c:function:: int ARKodeSetDefaults(void* arkode_mem)

doc/cvode/guide/source/Introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ implementations.
111111
.. efficiency of C, and the greater ease of interfacing the solver to
112112
.. applications written in extended Fortran.
113113
114-
Changes to SUNDIALS in release X.Y.Z
114+
Changes to SUNDIALS in release 7.5.0
115115
====================================
116116

117117
.. include:: ../../../shared/RecentChanges.rst

doc/cvode/guide/source/Usage/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -940,7 +940,7 @@ Main solver optional input functions
940940
File-based options are not yet supported, so the ``file_name`` argument
941941
should be set to either ``NULL`` or the empty string ``""``.
942942

943-
.. versionadded:: x.y.z
943+
.. versionadded:: 7.5.0
944944

945945
.. c:function:: int CVodeSetUserData(void* cvode_mem, void * user_data)
946946

doc/cvodes/guide/source/Introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ greater ease of interfacing the solver to applications written in extended
112112
Fortran.
113113

114114

115-
Changes to SUNDIALS in release X.Y.Z
115+
Changes to SUNDIALS in release 7.5.0
116116
====================================
117117

118118
.. include:: ../../../shared/RecentChanges.rst

0 commit comments

Comments
 (0)