Skip to content

Commit bacf6ac

Browse files
authored
Release/7.1.0 (#510)
1 parent 23581e8 commit bacf6ac

38 files changed

+597
-593
lines changed

.git-blame-ignore-revs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
fab1cecb7d91cff53b31730af5d00ff154c3b6ce
33
# Remove deprecated types in 7.0.0
44
cc6960349aa92e2bcad9168a6dacff99b21c329c
5+
# Apply formatting to Fortran files
6+
23581e8454955283139e551a7bcd1b85d8b7c77b

CHANGELOG.md

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

3-
## Changes to SUNDIALS in release X.Y.Z
3+
## Changes to SUNDIALS in release 7.1.0
44

55
### Major Features
66

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}
72+
note = {v6.1.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}
81+
note = {v7.1.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}
90+
note = {v7.1.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}
99+
note = {v7.1.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}
108+
note = {v6.1.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}
117+
note = {v7.1.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 "[email protected]")
5050
set(PACKAGE_NAME "SUNDIALS")
51-
set(PACKAGE_STRING "SUNDIALS 7.0.0")
51+
set(PACKAGE_STRING "SUNDIALS 7.1.0")
5252
set(PACKAGE_TARNAME "sundials")
5353

5454
# Set SUNDIALS version numbers
@@ -57,7 +57,7 @@ message(STATUS "SUNDIALS_GIT_VERSION: ${SUNDIALS_GIT_VERSION}")
5757

5858
# (use "" for the version label if none is needed)
5959
set(PACKAGE_VERSION_MAJOR "7")
60-
set(PACKAGE_VERSION_MINOR "0")
60+
set(PACKAGE_VERSION_MINOR "1")
6161
set(PACKAGE_VERSION_PATCH "0")
6262
set(PACKAGE_VERSION_LABEL "")
6363

@@ -73,37 +73,37 @@ endif()
7373

7474
# Specify the VERSION and SOVERSION for shared libraries
7575

76-
set(arkodelib_VERSION "6.0.0")
76+
set(arkodelib_VERSION "6.1.0")
7777
set(arkodelib_SOVERSION "6")
7878

79-
set(cvodelib_VERSION "7.0.0")
79+
set(cvodelib_VERSION "7.1.0")
8080
set(cvodelib_SOVERSION "7")
8181

82-
set(cvodeslib_VERSION "7.0.0")
82+
set(cvodeslib_VERSION "7.1.0")
8383
set(cvodeslib_SOVERSION "7")
8484

85-
set(idalib_VERSION "7.0.0")
85+
set(idalib_VERSION "7.1.0")
8686
set(idalib_SOVERSION "7")
8787

88-
set(idaslib_VERSION "6.0.0")
88+
set(idaslib_VERSION "6.1.0")
8989
set(idaslib_SOVERSION "6")
9090

91-
set(kinsollib_VERSION "7.0.0")
91+
set(kinsollib_VERSION "7.1.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")
97+
set(nveclib_VERSION "7.1.0")
9898
set(nveclib_SOVERSION "7")
9999

100-
set(sunmatrixlib_VERSION "5.0.0")
100+
set(sunmatrixlib_VERSION "5.1.0")
101101
set(sunmatrixlib_SOVERSION "5")
102102

103-
set(sunlinsollib_VERSION "5.0.0")
103+
set(sunlinsollib_VERSION "5.1.0")
104104
set(sunlinsollib_SOVERSION "5")
105105

106-
set(sunnonlinsollib_VERSION "4.0.0")
106+
set(sunnonlinsollib_VERSION "4.1.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 (Feb 2024) ###
2+
### Version 7.1.0 (Jun 2024) ###
33

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

doc/arkode/guide/source/ARKodeButcherTable.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ ARKodeButcherTable functions
168168
* The name associated with *emethod*.
169169
* ``NULL`` pointer if *emethod* was invalid.
170170
171-
.. versionadded:: x.y.z
171+
.. versionadded:: 6.1.0
172172
173173
.. c:function:: ARKodeButcherTable ARKodeButcherTable_LoadDIRK(ARKODE_DIRKTableID imethod)
174174
@@ -219,7 +219,7 @@ ARKodeButcherTable functions
219219
* The name associated with *imethod*.
220220
* ``NULL`` pointer if *imethod* was invalid.
221221
222-
.. versionadded:: x.y.z
222+
.. versionadded:: 6.1.0
223223
224224
225225
.. c:function:: ARKodeButcherTable ARKodeButcherTable_Alloc(int stages, sunbooleantype embedded)

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

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

doc/arkode/guide/source/Usage/ARKStep/Relaxation.rst

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Enabling or Disabling Relaxation
6969
7070
.. versionadded:: 5.6.0
7171
72-
.. deprecated:: x.y.z
72+
.. deprecated:: 6.1.0
7373
7474
Use :c:func:`ARKodeSetRelaxFn` instead.
7575
@@ -98,7 +98,7 @@ relaxation.
9898
9999
.. versionadded:: 5.6.0
100100
101-
.. deprecated:: x.y.z
101+
.. deprecated:: 6.1.0
102102
103103
Use :c:func:`ARKodeSetRelaxEtaFail` instead.
104104
@@ -124,7 +124,7 @@ relaxation.
124124
125125
.. versionadded:: 5.6.0
126126
127-
.. deprecated:: x.y.z
127+
.. deprecated:: 6.1.0
128128
129129
Use :c:func:`ARKodeSetRelaxLowerBound` instead.
130130
@@ -150,7 +150,7 @@ relaxation.
150150
151151
.. versionadded:: 5.6.0
152152
153-
.. deprecated:: x.y.z
153+
.. deprecated:: 6.1.0
154154
155155
Use :c:func:`ARKodeSetRelaxUpperBound` instead.
156156
@@ -174,7 +174,7 @@ relaxation.
174174
175175
.. versionadded:: 5.6.0
176176
177-
.. deprecated:: x.y.z
177+
.. deprecated:: 6.1.0
178178
179179
Use :c:func:`ARKodeSetRelaxMaxFails` instead.
180180
@@ -202,7 +202,7 @@ relaxation.
202202
203203
.. versionadded:: 5.6.0
204204
205-
.. deprecated:: x.y.z
205+
.. deprecated:: 6.1.0
206206
207207
Use :c:func:`ARKodeSetRelaxMaxIters` instead.
208208
@@ -223,7 +223,7 @@ relaxation.
223223
224224
.. versionadded:: 5.6.0
225225
226-
.. deprecated:: x.y.z
226+
.. deprecated:: 6.1.0
227227
228228
Use :c:func:`ARKodeSetRelaxSolver` instead.
229229
@@ -253,7 +253,7 @@ relaxation.
253253
254254
.. versionadded:: 5.6.0
255255
256-
.. deprecated:: x.y.z
256+
.. deprecated:: 6.1.0
257257
258258
Use :c:func:`ARKodeSetRelaxResTol` instead.
259259
@@ -284,7 +284,7 @@ relaxation.
284284

285285
.. versionadded:: 5.6.0
286286

287-
.. deprecated:: x.y.z
287+
.. deprecated:: 6.1.0
288288

289289
Use :c:func:`ARKodeSetRelaxTol` instead.
290290

@@ -309,7 +309,7 @@ about the performance of the relaxation method.
309309
310310
.. versionadded:: 5.6.0
311311
312-
.. deprecated:: x.y.z
312+
.. deprecated:: 6.1.0
313313
314314
Use :c:func:`ARKodeGetNumRelaxFnEvals` instead.
315315
@@ -328,7 +328,7 @@ about the performance of the relaxation method.
328328
329329
.. versionadded:: 5.6.0
330330
331-
.. deprecated:: x.y.z
331+
.. deprecated:: 6.1.0
332332
333333
Use :c:func:`ARKodeGetNumRelaxJacEvals` instead.
334334
@@ -352,7 +352,7 @@ about the performance of the relaxation method.
352352
353353
.. versionadded:: 5.6.0
354354
355-
.. deprecated:: x.y.z
355+
.. deprecated:: 6.1.0
356356
357357
Use :c:func:`ARKodeGetNumRelaxFails` instead.
358358
@@ -372,7 +372,7 @@ about the performance of the relaxation method.
372372
373373
.. versionadded:: 5.6.0
374374
375-
.. deprecated:: x.y.z
375+
.. deprecated:: 6.1.0
376376
377377
Use :c:func:`ARKodeGetNumRelaxBoundFails` instead.
378378
@@ -391,7 +391,7 @@ about the performance of the relaxation method.
391391
392392
.. versionadded:: 5.6.0
393393
394-
.. deprecated:: x.y.z
394+
.. deprecated:: 6.1.0
395395
396396
Use :c:func:`ARKodeGetNumRelaxSolveFails` instead.
397397
@@ -410,6 +410,6 @@ about the performance of the relaxation method.
410410
411411
.. versionadded:: 5.6.0
412412
413-
.. deprecated:: x.y.z
413+
.. deprecated:: 6.1.0
414414
415415
Use :c:func:`ARKodeGetNumRelaxSolveIters` instead.

0 commit comments

Comments
 (0)