Skip to content

Commit 2abd63b

Browse files
authored
Release/v7.0.0 (#431)
SUNDIALS release v7.0.0
1 parent 6f7f591 commit 2abd63b

File tree

23 files changed

+122
-124
lines changed

23 files changed

+122
-124
lines changed

CHANGELOG.md

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

3-
## Changes to SUNDIALS in release 7.0.0-rc.1
4-
5-
⚠️ This is a release candidate.
3+
## Changes to SUNDIALS in release v7.0.0
64

75
### Major Feature
86

@@ -97,7 +95,7 @@ and a typedef to a `MPI_Comm` in builds with MPI. As a result:
9795
`SUNLogger_Create` or `SUNProfiler_Create`.
9896

9997
- Some users will need to update their calls to `N_VGetCommunicator`, and
100-
update any custom `N_Vector` implementations tht provide
98+
update any custom `N_Vector` implementations that provide
10199
`N_VGetCommunicator`, since it now returns a `SUNComm`.
102100

103101
The change away from type-erased pointers for `SUNComm` fixes problems like the

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.0.0-rc.1}
72+
note = {v6.0.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 = {2024},
81-
note = {v7.0.0-rc.1}
81+
note = {v7.0.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 = {2024},
90-
note = {v7.0.0-rc.1}
90+
note = {v7.0.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 = {2024},
99-
note = {v7.0.0-rc.1}
99+
note = {v7.0.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 = {2024},
108-
note = {v6.0.0-rc.1}
108+
note = {v6.0.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 = {2024},
117-
note = {v7.0.0-rc.1}
117+
note = {v7.0.0}
118118
}
119119
```

CMakeLists.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ include(FindPackageHandleStandardArgs)
4848
# Set some variables with info on the SUNDIALS project
4949
set(PACKAGE_BUGREPORT "sundials-users@llnl.gov")
5050
set(PACKAGE_NAME "SUNDIALS")
51-
set(PACKAGE_STRING "SUNDIALS 7.0.0-rc.1")
51+
set(PACKAGE_STRING "SUNDIALS 7.0.0")
5252
set(PACKAGE_TARNAME "sundials")
5353

5454
# Set SUNDIALS version numbers
@@ -59,7 +59,7 @@ message(STATUS "SUNDIALS_GIT_VERSION: ${SUNDIALS_GIT_VERSION}")
5959
set(PACKAGE_VERSION_MAJOR "7")
6060
set(PACKAGE_VERSION_MINOR "0")
6161
set(PACKAGE_VERSION_PATCH "0")
62-
set(PACKAGE_VERSION_LABEL "rc.1")
62+
set(PACKAGE_VERSION_LABEL "")
6363

6464
if(PACKAGE_VERSION_LABEL)
6565
set(PACKAGE_VERSION
@@ -73,37 +73,37 @@ endif()
7373

7474
# Specify the VERSION and SOVERSION for shared libraries
7575

76-
set(arkodelib_VERSION "6.0.0-rc.1")
76+
set(arkodelib_VERSION "6.0.0")
7777
set(arkodelib_SOVERSION "6")
7878

79-
set(cvodelib_VERSION "7.0.0-rc.1")
79+
set(cvodelib_VERSION "7.0.0")
8080
set(cvodelib_SOVERSION "7")
8181

82-
set(cvodeslib_VERSION "7.0.0-rc.1")
82+
set(cvodeslib_VERSION "7.0.0")
8383
set(cvodeslib_SOVERSION "7")
8484

85-
set(idalib_VERSION "7.0.0-rc.1")
85+
set(idalib_VERSION "7.0.0")
8686
set(idalib_SOVERSION "7")
8787

88-
set(idaslib_VERSION "6.0.0-rc.1")
88+
set(idaslib_VERSION "6.0.0")
8989
set(idaslib_SOVERSION "6")
9090

91-
set(kinsollib_VERSION "7.0.0-rc.1")
91+
set(kinsollib_VERSION "7.0.0")
9292
set(kinsollib_SOVERSION "7")
9393

9494
set(cpodeslib_VERSION "0.0.0")
9595
set(cpodeslib_SOVERSION "0")
9696

97-
set(nveclib_VERSION "7.0.0-rc.1")
97+
set(nveclib_VERSION "7.0.0")
9898
set(nveclib_SOVERSION "7")
9999

100-
set(sunmatrixlib_VERSION "5.0.0-rc.1")
100+
set(sunmatrixlib_VERSION "5.0.0")
101101
set(sunmatrixlib_SOVERSION "5")
102102

103-
set(sunlinsollib_VERSION "5.0.0-rc.1")
103+
set(sunlinsollib_VERSION "5.0.0")
104104
set(sunlinsollib_SOVERSION "5")
105105

106-
set(sunnonlinsollib_VERSION "4.0.0-rc.1")
106+
set(sunnonlinsollib_VERSION "4.0.0")
107107
set(sunnonlinsollib_SOVERSION "4")
108108

109109
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.0.0-rc.1 (Jan 2024) ###
2+
### Version 7.0.0 (Feb 2024) ###
33

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

doc/arkode/guide/source/Introduction.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ provided with SUNDIALS, or again may utilize a user-supplied module.
130130
Changes from previous versions
131131
==============================
132132

133-
Changes in v6.0.0-rc.1
133+
Changes in v6.0.0
134134
----------------------
135135

136136
**Major Features**
@@ -252,7 +252,7 @@ and a typedef to a ``MPI_Comm`` in builds with MPI. As a result:
252252
:c:func:`SUNLogger_Create` or :c:func:`SUNProfiler_Create`.
253253

254254
- Some users will need to update their calls to ``N_VGetCommunicator``, and
255-
update any custom ``N_Vector`` implementations tht provide
255+
update any custom ``N_Vector`` implementations that provide
256256
``N_VGetCommunicator``, since it now returns a ``SUNComm``.
257257

258258
The change away from type-erased pointers for :c:type:`SUNComm` fixes problems

doc/cvode/guide/source/Introduction.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ implementations.
111111
Changes from previous versions
112112
==============================
113113

114-
Changes in v7.0.0-rc.1
114+
Changes in v7.0.0
115115
----------------------
116116

117117
**Major Features**
@@ -223,7 +223,7 @@ and a typedef to a ``MPI_Comm`` in builds with MPI. As a result:
223223
:c:func:`SUNLogger_Create` or :c:func:`SUNProfiler_Create`.
224224

225225
- Some users will need to update their calls to ``N_VGetCommunicator``, and
226-
update any custom ``N_Vector`` implementations tht provide
226+
update any custom ``N_Vector`` implementations that provide
227227
``N_VGetCommunicator``, since it now returns a ``SUNComm``.
228228

229229
The change away from type-erased pointers for :c:type:`SUNComm` fixes problems

doc/cvodes/guide/source/Introduction.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Fortran.
111111
Changes from previous versions
112112
==============================
113113

114-
Changes in v7.0.0-rc.1
114+
Changes in v7.0.0
115115
----------------------
116116

117117
**Major Features**
@@ -223,7 +223,7 @@ and a typedef to a ``MPI_Comm`` in builds with MPI. As a result:
223223
:c:func:`SUNLogger_Create` or :c:func:`SUNProfiler_Create`.
224224

225225
- Some users will need to update their calls to ``N_VGetCommunicator``, and
226-
update any custom ``N_Vector`` implementations tht provide
226+
update any custom ``N_Vector`` implementations that provide
227227
``N_VGetCommunicator``, since it now returns a ``SUNComm``.
228228

229229
The change away from type-erased pointers for :c:type:`SUNComm` fixes problems

doc/ida/guide/source/Introduction.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ systems.
7272
Changes from previous versions
7373
==============================
7474

75-
Changes in v7.0.0-rc.1
75+
Changes in v7.0.0
7676
----------------------
7777

7878
**Major Features**
@@ -184,7 +184,7 @@ and a typedef to a ``MPI_Comm`` in builds with MPI. As a result:
184184
:c:func:`SUNLogger_Create` or :c:func:`SUNProfiler_Create`.
185185

186186
- Some users will need to update their calls to ``N_VGetCommunicator``, and
187-
update any custom ``N_Vector`` implementations tht provide
187+
update any custom ``N_Vector`` implementations that provide
188188
``N_VGetCommunicator``, since it now returns a ``SUNComm``.
189189

190190
The change away from type-erased pointers for :c:type:`SUNComm` fixes problems

doc/idas/guide/source/Introduction.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ integrate any final-condition ODE dependent on the solution of the original IVP
8686
Changes from previous versions
8787
==============================
8888

89-
Changes in v6.0.0-rc.1
89+
Changes in v6.0.0
9090
----------------------
9191

9292
**Major Features**
@@ -198,7 +198,7 @@ and a typedef to a ``MPI_Comm`` in builds with MPI. As a result:
198198
:c:func:`SUNLogger_Create` or :c:func:`SUNProfiler_Create`.
199199

200200
- Some users will need to update their calls to ``N_VGetCommunicator``, and
201-
update any custom ``N_Vector`` implementations tht provide
201+
update any custom ``N_Vector`` implementations that provide
202202
``N_VGetCommunicator``, since it now returns a ``SUNComm``.
203203

204204
The change away from type-erased pointers for :c:type:`SUNComm` fixes problems

doc/kinsol/guide/source/Introduction.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ applications written in Fortran.
8888
Changes from previous versions
8989
==============================
9090

91-
Changes in v7.0.0-rc.1
91+
Changes in v7.0.0
9292
----------------------
9393

9494
**Major Features**
@@ -200,7 +200,7 @@ and a typedef to a ``MPI_Comm`` in builds with MPI. As a result:
200200
:c:func:`SUNLogger_Create` or :c:func:`SUNProfiler_Create`.
201201

202202
- Some users will need to update their calls to ``N_VGetCommunicator``, and
203-
update any custom ``N_Vector`` implementations tht provide
203+
update any custom ``N_Vector`` implementations that provide
204204
``N_VGetCommunicator``, since it now returns a ``SUNComm``.
205205

206206
The change away from type-erased pointers for :c:type:`SUNComm` fixes problems

0 commit comments

Comments
 (0)