Skip to content

Commit 2dcb3e0

Browse files
gardner48balos1drreynolds
committed
Release: 7.2.1 (#628)
SUNDIALS Release v7.2.1 --------- Co-authored-by: Cody Balos <[email protected]> Co-authored-by: Daniel R. Reynolds <[email protected]>
1 parent c78938d commit 2dcb3e0

File tree

25 files changed

+102
-100
lines changed

25 files changed

+102
-100
lines changed

CHANGELOG.md

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

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

75
### New Features and Enhancements
86

7+
Unit tests were separated from examples. To that end, the following directories
8+
were moved out of the `examples/` directory to the `test/unit_tests` directory:
9+
`nvector`, `sunmatrix`, `sunlinsol`, and `sunnonlinsol`.
10+
911
### Bug Fixes
1012

1113
Fixed a bug in ARKStep where an extra right-hand side evaluation would occur
1214
each time step when enabling the ``ARKodeSetAutonomous`` option and using an
1315
IMEX method where the DIRK table has an implicit first stage and is not stiffly
1416
accurate.
1517

16-
### Deprecation Notices
17-
1818
## Changes to SUNDIALS in release 7.2.0
1919

2020
### Major Features

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 = {2024},
72-
note = {v6.2.0}
72+
note = {v6.2.1}
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 = {2024},
81-
note = {v7.2.0}
81+
note = {v7.2.1}
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 = {2024},
90-
note = {v7.2.0}
90+
note = {v7.2.1}
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 = {2024},
99-
note = {v7.2.0}
99+
note = {v7.2.1}
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 = {2024},
108-
note = {v6.2.0}
108+
note = {v6.2.1}
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 = {2024},
117-
note = {v7.2.0}
117+
note = {v7.2.1}
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 "[email protected]")
4646
set(PACKAGE_NAME "SUNDIALS")
47-
set(PACKAGE_STRING "SUNDIALS 7.2.0")
47+
set(PACKAGE_STRING "SUNDIALS 7.2.1")
4848
set(PACKAGE_TARNAME "sundials")
4949

5050
# Set SUNDIALS version numbers
@@ -54,7 +54,7 @@ message(STATUS "SUNDIALS_GIT_VERSION: ${SUNDIALS_GIT_VERSION}")
5454
# (use "" for the version label if none is needed)
5555
set(PACKAGE_VERSION_MAJOR "7")
5656
set(PACKAGE_VERSION_MINOR "2")
57-
set(PACKAGE_VERSION_PATCH "0")
57+
set(PACKAGE_VERSION_PATCH "1")
5858
set(PACKAGE_VERSION_LABEL "")
5959

6060
if(PACKAGE_VERSION_LABEL)
@@ -69,37 +69,37 @@ endif()
6969

7070
# Specify the VERSION and SOVERSION for shared libraries
7171

72-
set(arkodelib_VERSION "6.2.0")
72+
set(arkodelib_VERSION "6.2.1")
7373
set(arkodelib_SOVERSION "6")
7474

75-
set(cvodelib_VERSION "7.2.0")
75+
set(cvodelib_VERSION "7.2.1")
7676
set(cvodelib_SOVERSION "7")
7777

78-
set(cvodeslib_VERSION "7.2.0")
78+
set(cvodeslib_VERSION "7.2.1")
7979
set(cvodeslib_SOVERSION "7")
8080

81-
set(idalib_VERSION "7.2.0")
81+
set(idalib_VERSION "7.2.1")
8282
set(idalib_SOVERSION "7")
8383

84-
set(idaslib_VERSION "6.2.0")
84+
set(idaslib_VERSION "6.2.1")
8585
set(idaslib_SOVERSION "6")
8686

87-
set(kinsollib_VERSION "7.2.0")
87+
set(kinsollib_VERSION "7.2.1")
8888
set(kinsollib_SOVERSION "7")
8989

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

93-
set(nveclib_VERSION "7.2.0")
93+
set(nveclib_VERSION "7.2.1")
9494
set(nveclib_SOVERSION "7")
9595

96-
set(sunmatrixlib_VERSION "5.2.0")
96+
set(sunmatrixlib_VERSION "5.2.1")
9797
set(sunmatrixlib_SOVERSION "5")
9898

99-
set(sunlinsollib_VERSION "5.2.0")
99+
set(sunlinsollib_VERSION "5.2.1")
100100
set(sunlinsollib_SOVERSION "5")
101101

102-
set(sunnonlinsollib_VERSION "4.2.0")
102+
set(sunnonlinsollib_VERSION "4.2.1")
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
@@ -1,5 +1,5 @@
11
# SUNDIALS: SUite of Nonlinear and DIfferential/ALgebraic equation Solvers #
2-
### Version 7.2.0 (Dec 2024) ###
2+
### Version 7.2.1 (Dec 2024) ###
33

44
**Center for Applied Scientific Computing, Lawrence Livermore National Laboratory**
55

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.2.1
130130
====================================
131131

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

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.2.1
112112
====================================
113113

114114
.. include:: ../../../shared/RecentChanges.rst

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.2.1
113113
====================================
114114

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

doc/ida/guide/source/Introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ systems.
6969
the greater ease of interfacing the solver to applications written in extended
7070
Fortran.
7171
72-
Changes to SUNDIALS in release X.Y.Z
72+
Changes to SUNDIALS in release 7.2.1
7373
====================================
7474

7575
.. include:: ../../../shared/RecentChanges.rst

doc/idas/guide/source/Introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ integrate any final-condition ODE dependent on the solution of the original IVP
8383
the greater ease of interfacing the solver to applications written in extended
8484
Fortran.
8585
86-
Changes to SUNDIALS in release X.Y.Z
86+
Changes to SUNDIALS in release 6.2.1
8787
====================================
8888

8989
.. include:: ../../../shared/RecentChanges.rst

doc/kinsol/guide/source/Introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ applications written in Fortran.
8585

8686
.. _KINSOL.Introduction.Changes:
8787

88-
Changes to SUNDIALS in release X.Y.Z
88+
Changes to SUNDIALS in release 7.2.1
8989
====================================
9090

9191
.. include:: ../../../shared/RecentChanges.rst

0 commit comments

Comments
 (0)