Skip to content

Commit cb681a4

Browse files
committed
Release: v7.3.0 (#684)
SUNDIALS Release v7.3.0
1 parent 28b5d61 commit cb681a4

File tree

60 files changed

+291
-274
lines changed

Some content is hidden

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

60 files changed

+291
-274
lines changed

.github/workflows/docs-pdfs.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@ jobs:
3838
run: |
3939
pip install -r doc/requirements.txt
4040
41+
# Build the combined html docs first to create a local objects.inv file
42+
# for intersphinx to resolve cross references between package guides e.g.,
43+
# a new function is referenced in the change log and so it not included in
44+
# the objects.inv file from readthedocs yet
45+
- name: Build combined docs
46+
run: cd doc/superbuild && make html
47+
4148
- name: Build docs
4249
run: cd doc/install_guide && make latexpdf
4350

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.3.0
44

55
### Major Features
66

CITATIONS.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -68,52 +68,52 @@ they are using rather than the combined SUNDIALS online guide:
6868
@Misc{arkodeDocumentation,
6969
author = {Daniel R. Reynolds and David J. Gardner and Carol S. Woodward and Cody J. Balos},
7070
title = {User Documentation for ARKODE},
71-
year = {2024},
72-
note = {v6.2.1}
71+
year = {2025},
72+
note = {v6.3.0}
7373
}
7474
```
7575

7676
```bibtex
7777
@Misc{cvodeDocumentation,
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},
80-
year = {2024},
81-
note = {v7.2.1}
80+
year = {2025},
81+
note = {v7.3.0}
8282
}
8383
```
8484

8585
```bibtex
8686
@Misc{cvodesDocumentation,
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},
89-
year = {2024},
90-
note = {v7.2.1}
89+
year = {2025},
90+
note = {v7.3.0}
9191
}
9292
```
9393

9494
```bibtex
9595
@Misc{idaDocumentation,
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},
98-
year = {2024},
99-
note = {v7.2.1}
98+
year = {2025},
99+
note = {v7.3.0}
100100
}
101101
```
102102

103103
```bibtex
104104
@Misc{idasDocumentation,
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},
107-
year = {2024},
108-
note = {v6.2.1}
107+
year = {2025},
108+
note = {v6.3.0}
109109
}
110110
```
111111

112112
```bibtex
113113
@Misc{kinsolDocumentation,
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},
116-
year = {2024},
117-
note = {v7.2.1}
116+
year = {2025},
117+
note = {v7.3.0}
118118
}
119119
```

CMakeLists.txt

Lines changed: 13 additions & 13 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.1")
47+
set(PACKAGE_STRING "SUNDIALS 7.3.0")
4848
set(PACKAGE_TARNAME "sundials")
4949

5050
# Set SUNDIALS version numbers
@@ -53,8 +53,8 @@ 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 "2")
57-
set(PACKAGE_VERSION_PATCH "1")
56+
set(PACKAGE_VERSION_MINOR "3")
57+
set(PACKAGE_VERSION_PATCH "0")
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.1")
72+
set(arkodelib_VERSION "6.3.0")
7373
set(arkodelib_SOVERSION "6")
7474

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

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

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

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

87-
set(kinsollib_VERSION "7.2.1")
87+
set(kinsollib_VERSION "7.3.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.2.1")
93+
set(nveclib_VERSION "7.3.0")
9494
set(nveclib_SOVERSION "7")
9595

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

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

102-
set(sunnonlinsollib_VERSION "4.2.1")
102+
set(sunnonlinsollib_VERSION "4.3.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.2.1 (Dec 2024) ###
5+
### Version 7.3.0 (Apr 2025) ###
66

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

doc/arkode/guide/source/ARKodeButcherTable.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ ARKodeButcherTable functions
285285
* *ARK_SUCCESS* if successful.
286286
* *ARK_MEM_NULL* if the Butcher table memory was ``NULL``.
287287
288-
.. deprecated:: X.Y.Z
288+
.. deprecated:: 6.3.0
289289
290290
Work space functions will be removed in version 8.0.0.
291291

doc/arkode/guide/source/ARKodeSPRKTable.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ ARKodeSPRKTable functions
169169
:param liw: Pointer to store the integer workspace size.
170170
:param lrw: Pointer to store the real workspace size.
171171
172-
.. deprecated:: X.Y.Z
172+
.. deprecated:: 6.3.0
173173
174174
Work space functions will be removed in version 8.0.0.
175175

0 commit comments

Comments
 (0)