Skip to content

Commit 8e17876

Browse files
committed
Release: v7.4.0 (#718)
SUNDIALS Release v7.4.0
1 parent c4cb91d commit 8e17876

32 files changed

Lines changed: 138 additions & 136 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# SUNDIALS Changelog
22

3-
## Changes to SUNDIALS in release X.Y.Z
4-
5-
### Major Features
3+
## Changes to SUNDIALS in release 7.4.0
64

75
### New Features and Enhancements
86

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.3.0}
72+
note = {v6.4.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.3.0}
81+
note = {v7.4.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.3.0}
90+
note = {v7.4.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.3.0}
99+
note = {v7.4.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.3.0}
108+
note = {v6.4.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.3.0}
117+
note = {v7.4.0}
118118
}
119119
```

CMakeLists.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ include(FindPackageHandleStandardArgs)
4444
# Set some variables with info on the SUNDIALS project
4545
set(PACKAGE_BUGREPORT "sundials-users@llnl.gov")
4646
set(PACKAGE_NAME "SUNDIALS")
47-
set(PACKAGE_STRING "SUNDIALS 7.3.0")
47+
set(PACKAGE_STRING "SUNDIALS 7.4.0")
4848
set(PACKAGE_TARNAME "sundials")
4949

5050
# Set SUNDIALS version numbers
@@ -53,7 +53,7 @@ message(STATUS "SUNDIALS_GIT_VERSION: ${SUNDIALS_GIT_VERSION}")
5353

5454
# (use "" for the version label if none is needed)
5555
set(PACKAGE_VERSION_MAJOR "7")
56-
set(PACKAGE_VERSION_MINOR "3")
56+
set(PACKAGE_VERSION_MINOR "4")
5757
set(PACKAGE_VERSION_PATCH "0")
5858
set(PACKAGE_VERSION_LABEL "")
5959

@@ -69,37 +69,37 @@ endif()
6969

7070
# Specify the VERSION and SOVERSION for shared libraries
7171

72-
set(arkodelib_VERSION "6.3.0")
72+
set(arkodelib_VERSION "6.4.0")
7373
set(arkodelib_SOVERSION "6")
7474

75-
set(cvodelib_VERSION "7.3.0")
75+
set(cvodelib_VERSION "7.4.0")
7676
set(cvodelib_SOVERSION "7")
7777

78-
set(cvodeslib_VERSION "7.3.0")
78+
set(cvodeslib_VERSION "7.4.0")
7979
set(cvodeslib_SOVERSION "7")
8080

81-
set(idalib_VERSION "7.3.0")
81+
set(idalib_VERSION "7.4.0")
8282
set(idalib_SOVERSION "7")
8383

84-
set(idaslib_VERSION "6.3.0")
84+
set(idaslib_VERSION "6.4.0")
8585
set(idaslib_SOVERSION "6")
8686

87-
set(kinsollib_VERSION "7.3.0")
87+
set(kinsollib_VERSION "7.4.0")
8888
set(kinsollib_SOVERSION "7")
8989

9090
set(cpodeslib_VERSION "0.0.0")
9191
set(cpodeslib_SOVERSION "0")
9292

93-
set(nveclib_VERSION "7.3.0")
93+
set(nveclib_VERSION "7.4.0")
9494
set(nveclib_SOVERSION "7")
9595

96-
set(sunmatrixlib_VERSION "5.3.0")
96+
set(sunmatrixlib_VERSION "5.4.0")
9797
set(sunmatrixlib_SOVERSION "5")
9898

99-
set(sunlinsollib_VERSION "5.3.0")
99+
set(sunlinsollib_VERSION "5.4.0")
100100
set(sunlinsollib_SOVERSION "5")
101101

102-
set(sunnonlinsollib_VERSION "4.3.0")
102+
set(sunnonlinsollib_VERSION "4.4.0")
103103
set(sunnonlinsollib_SOVERSION "4")
104104

105105
set(sundialslib_VERSION

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.3.0 (Apr 2025) ###
5+
### Version 7.4.0 (Jun 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
@@ -126,7 +126,7 @@ require a linear solver, ARKODE may use a variety of SUNLinearSolver modules
126126
provided with SUNDIALS, or again may utilize a user-supplied module.
127127

128128

129-
Changes to SUNDIALS in release X.Y.Z
129+
Changes to SUNDIALS in release 6.4.0
130130
====================================
131131

132132
.. include:: ../../../shared/RecentChanges.rst

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ Optional inputs for IVP method selection
501501
:retval ARK_MEM_NULL: if the SPRKStep memory is ``NULL``
502502
:retval ARK_ILL_INPUT: if an argument had an illegal value
503503
504-
.. deprecated:: x.y.z
504+
.. deprecated:: 6.4.0
505505
506506
Use :c:func:`ARKodeSetUseCompensatedSums` instead.
507507

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1638,7 +1638,7 @@ Reset accumulated error :c:func:`ARKodeReset
16381638
16391639
.. versionadded:: 6.1.0
16401640
1641-
.. versionchanged:: X.Y.Z
1641+
.. versionchanged:: 6.4.0
16421642
16431643
The restriction that ``cfl_frac`` is less than one has been removed.
16441644

doc/cvode/guide/source/Introduction.rst

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

114114
.. 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
@@ -1800,7 +1800,7 @@ step size adaptivity.
18001800

18011801
.. versionadded:: 6.2.0
18021802

1803-
.. versionchanged:: x.y.z
1803+
.. versionchanged:: 7.4.0
18041804

18051805
Updated the allowable values for ``eta_min_fx`` in include 1.
18061806

doc/cvodes/guide/source/Introduction.rst

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

111111

112-
Changes to SUNDIALS in release X.Y.Z
112+
Changes to SUNDIALS in release 7.4.0
113113
====================================
114114

115115
.. include:: ../../../shared/RecentChanges.rst

0 commit comments

Comments
 (0)