From 5c53be85c88f63c5201c130b8cb2c686615cfb03 Mon Sep 17 00:00:00 2001 From: David Gardner Date: Fri, 20 Dec 2024 10:05:18 -0800 Subject: [PATCH] Release: 7.2.1 (#628) SUNDIALS Release v7.2.1 --------- Co-authored-by: Cody Balos Co-authored-by: Daniel R. Reynolds --- CHANGELOG.md | 10 +++++----- CITATIONS.md | 12 ++++++------ CMakeLists.txt | 24 ++++++++++++------------ README.md | 2 +- doc/arkode/guide/source/Introduction.rst | 2 +- doc/cvode/guide/source/Introduction.rst | 2 +- doc/cvodes/guide/source/Introduction.rst | 2 +- doc/ida/guide/source/Introduction.rst | 2 +- doc/idas/guide/source/Introduction.rst | 2 +- doc/kinsol/guide/source/Introduction.rst | 2 +- doc/shared/Changelog.rst | 2 +- doc/shared/History.rst | 2 ++ doc/shared/RecentChanges.rst | 8 ++++---- doc/shared/sundials.bib | 24 ++++++++++++------------ doc/shared/sundials_vars.py | 16 ++++++++-------- doc/sundials/biblio.bib | 24 ++++++++++++------------ doc/sundials/ug.tex | 14 +++++++------- scripts/tarscript | 14 +++++++------- scripts/updateVersion.sh | 2 +- src/arkode/README.md | 6 +++--- src/cvode/README.md | 6 +++--- src/cvodes/README.md | 6 +++--- src/ida/README.md | 6 +++--- src/idas/README.md | 6 +++--- src/kinsol/README.md | 6 +++--- 25 files changed, 102 insertions(+), 100 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3049979e70..6bfc997a50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,13 @@ # SUNDIALS Changelog -## Changes to SUNDIALS in release X.Y.Z - -### Major Features +## Changes to SUNDIALS in release 7.2.1 ### New Features and Enhancements +Unit tests were separated from examples. To that end, the following directories +were moved out of the `examples/` directory to the `test/unit_tests` directory: +`nvector`, `sunmatrix`, `sunlinsol`, and `sunnonlinsol`. + ### Bug Fixes Fixed a bug in ARKStep where an extra right-hand side evaluation would occur @@ -13,8 +15,6 @@ each time step when enabling the ``ARKodeSetAutonomous`` option and using an IMEX method where the DIRK table has an implicit first stage and is not stiffly accurate. -### Deprecation Notices - ## Changes to SUNDIALS in release 7.2.0 ### Major Features diff --git a/CITATIONS.md b/CITATIONS.md index 78a67ab733..5ca79337f7 100644 --- a/CITATIONS.md +++ b/CITATIONS.md @@ -69,7 +69,7 @@ they are using rather than the combined SUNDIALS online guide: author = {Daniel R. Reynolds and David J. Gardner and Carol S. Woodward and Cody J. Balos}, title = {User Documentation for ARKODE}, year = {2024}, - note = {v6.2.0} + note = {v6.2.1} } ``` @@ -78,7 +78,7 @@ they are using rather than the combined SUNDIALS online guide: author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward}, title = {User Documentation for CVODE}, year = {2024}, - note = {v7.2.0} + note = {v7.2.1} } ``` @@ -87,7 +87,7 @@ they are using rather than the combined SUNDIALS online guide: author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward}, title = {User Documentation for CVODES}, year = {2024}, - note = {v7.2.0} + note = {v7.2.1} } ``` @@ -96,7 +96,7 @@ they are using rather than the combined SUNDIALS online guide: author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward}, title = {User Documentation for IDA}, year = {2024}, - note = {v7.2.0} + note = {v7.2.1} } ``` @@ -105,7 +105,7 @@ they are using rather than the combined SUNDIALS online guide: 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}, title = {User Documentation for IDAS}, year = {2024}, - note = {v6.2.0} + note = {v6.2.1} } ``` @@ -114,6 +114,6 @@ they are using rather than the combined SUNDIALS online guide: author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward}, title = {User Documentation for KINSOL}, year = {2024}, - note = {v7.2.0} + note = {v7.2.1} } ``` diff --git a/CMakeLists.txt b/CMakeLists.txt index bf3172c8e0..0795a92409 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -44,7 +44,7 @@ include(FindPackageHandleStandardArgs) # Set some variables with info on the SUNDIALS project set(PACKAGE_BUGREPORT "sundials-users@llnl.gov") set(PACKAGE_NAME "SUNDIALS") -set(PACKAGE_STRING "SUNDIALS 7.2.0") +set(PACKAGE_STRING "SUNDIALS 7.2.1") set(PACKAGE_TARNAME "sundials") # Set SUNDIALS version numbers @@ -54,7 +54,7 @@ message(STATUS "SUNDIALS_GIT_VERSION: ${SUNDIALS_GIT_VERSION}") # (use "" for the version label if none is needed) set(PACKAGE_VERSION_MAJOR "7") set(PACKAGE_VERSION_MINOR "2") -set(PACKAGE_VERSION_PATCH "0") +set(PACKAGE_VERSION_PATCH "1") set(PACKAGE_VERSION_LABEL "") if(PACKAGE_VERSION_LABEL) @@ -69,37 +69,37 @@ endif() # Specify the VERSION and SOVERSION for shared libraries -set(arkodelib_VERSION "6.2.0") +set(arkodelib_VERSION "6.2.1") set(arkodelib_SOVERSION "6") -set(cvodelib_VERSION "7.2.0") +set(cvodelib_VERSION "7.2.1") set(cvodelib_SOVERSION "7") -set(cvodeslib_VERSION "7.2.0") +set(cvodeslib_VERSION "7.2.1") set(cvodeslib_SOVERSION "7") -set(idalib_VERSION "7.2.0") +set(idalib_VERSION "7.2.1") set(idalib_SOVERSION "7") -set(idaslib_VERSION "6.2.0") +set(idaslib_VERSION "6.2.1") set(idaslib_SOVERSION "6") -set(kinsollib_VERSION "7.2.0") +set(kinsollib_VERSION "7.2.1") set(kinsollib_SOVERSION "7") set(cpodeslib_VERSION "0.0.0") set(cpodeslib_SOVERSION "0") -set(nveclib_VERSION "7.2.0") +set(nveclib_VERSION "7.2.1") set(nveclib_SOVERSION "7") -set(sunmatrixlib_VERSION "5.2.0") +set(sunmatrixlib_VERSION "5.2.1") set(sunmatrixlib_SOVERSION "5") -set(sunlinsollib_VERSION "5.2.0") +set(sunlinsollib_VERSION "5.2.1") set(sunlinsollib_SOVERSION "5") -set(sunnonlinsollib_VERSION "4.2.0") +set(sunnonlinsollib_VERSION "4.2.1") set(sunnonlinsollib_SOVERSION "4") set(sundialslib_VERSION diff --git a/README.md b/README.md index d00f7f276b..16a33f9918 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # SUNDIALS: SUite of Nonlinear and DIfferential/ALgebraic equation Solvers # -### Version 7.2.0 (Dec 2024) ### +### Version 7.2.1 (Dec 2024) ### **Center for Applied Scientific Computing, Lawrence Livermore National Laboratory** diff --git a/doc/arkode/guide/source/Introduction.rst b/doc/arkode/guide/source/Introduction.rst index a8e4d53d20..d00e94ec1f 100644 --- a/doc/arkode/guide/source/Introduction.rst +++ b/doc/arkode/guide/source/Introduction.rst @@ -126,7 +126,7 @@ require a linear solver, ARKODE may use a variety of SUNLinearSolver modules provided with SUNDIALS, or again may utilize a user-supplied module. -Changes to SUNDIALS in release X.Y.Z +Changes to SUNDIALS in release 6.2.1 ==================================== .. include:: ../../../shared/RecentChanges.rst diff --git a/doc/cvode/guide/source/Introduction.rst b/doc/cvode/guide/source/Introduction.rst index 3657a9c6b5..8e96f07d2c 100644 --- a/doc/cvode/guide/source/Introduction.rst +++ b/doc/cvode/guide/source/Introduction.rst @@ -108,7 +108,7 @@ implementations. .. efficiency of C, and the greater ease of interfacing the solver to .. applications written in extended Fortran. -Changes to SUNDIALS in release X.Y.Z +Changes to SUNDIALS in release 7.2.1 ==================================== .. include:: ../../../shared/RecentChanges.rst diff --git a/doc/cvodes/guide/source/Introduction.rst b/doc/cvodes/guide/source/Introduction.rst index b2883b9050..7c62846d6c 100644 --- a/doc/cvodes/guide/source/Introduction.rst +++ b/doc/cvodes/guide/source/Introduction.rst @@ -109,7 +109,7 @@ greater ease of interfacing the solver to applications written in extended Fortran. -Changes to SUNDIALS in release X.Y.Z +Changes to SUNDIALS in release 7.2.1 ==================================== .. include:: ../../../shared/RecentChanges.rst diff --git a/doc/ida/guide/source/Introduction.rst b/doc/ida/guide/source/Introduction.rst index 2ccf5ede24..402ede18a1 100644 --- a/doc/ida/guide/source/Introduction.rst +++ b/doc/ida/guide/source/Introduction.rst @@ -69,7 +69,7 @@ systems. the greater ease of interfacing the solver to applications written in extended Fortran. -Changes to SUNDIALS in release X.Y.Z +Changes to SUNDIALS in release 7.2.1 ==================================== .. include:: ../../../shared/RecentChanges.rst diff --git a/doc/idas/guide/source/Introduction.rst b/doc/idas/guide/source/Introduction.rst index 5fe9913428..370d67f9b0 100644 --- a/doc/idas/guide/source/Introduction.rst +++ b/doc/idas/guide/source/Introduction.rst @@ -83,7 +83,7 @@ integrate any final-condition ODE dependent on the solution of the original IVP the greater ease of interfacing the solver to applications written in extended Fortran. -Changes to SUNDIALS in release X.Y.Z +Changes to SUNDIALS in release 6.2.1 ==================================== .. include:: ../../../shared/RecentChanges.rst diff --git a/doc/kinsol/guide/source/Introduction.rst b/doc/kinsol/guide/source/Introduction.rst index 6961e9da38..eacc21babe 100644 --- a/doc/kinsol/guide/source/Introduction.rst +++ b/doc/kinsol/guide/source/Introduction.rst @@ -85,7 +85,7 @@ applications written in Fortran. .. _KINSOL.Introduction.Changes: -Changes to SUNDIALS in release X.Y.Z +Changes to SUNDIALS in release 7.2.1 ==================================== .. include:: ../../../shared/RecentChanges.rst diff --git a/doc/shared/Changelog.rst b/doc/shared/Changelog.rst index 430a095921..820168b155 100644 --- a/doc/shared/Changelog.rst +++ b/doc/shared/Changelog.rst @@ -21,7 +21,7 @@ Changelog .. SED_REPLACEMENT_KEY -Changes to SUNDIALS in release X.Y.Z +Changes to SUNDIALS in release 7.2.1 ==================================== .. include:: RecentChanges_link.rst diff --git a/doc/shared/History.rst b/doc/shared/History.rst index 4de146a29e..f7881c1b6c 100644 --- a/doc/shared/History.rst +++ b/doc/shared/History.rst @@ -21,6 +21,8 @@ Release History +----------+-------------------+-------------------+-------------------+-------------------+-------------------+-------------------+-------------------+ | Date | SUNDIALS | ARKODE | CVODE | CVODES | IDA | IDAS | KINSOL | +==========+===================+===================+===================+===================+===================+===================+===================+ +| Dec 2024 | 7.2.1 | 6.2.1 | 7.2.1 | 7.2.1 | 7.2.1 | 6.2.1 | 7.2.1 | ++----------+-------------------+-------------------+-------------------+-------------------+-------------------+-------------------+-------------------+ | Dec 2024 | 7.2.0 | 6.2.0 | 7.2.0 | 7.2.0 | 7.2.0 | 6.2.0 | 7.2.0 | +----------+-------------------+-------------------+-------------------+-------------------+-------------------+-------------------+-------------------+ | Jun 2024 | 7.1.1 | 6.1.1 | 7.1.1 | 7.1.1 | 7.1.1 | 6.1.1 | 7.1.1 | diff --git a/doc/shared/RecentChanges.rst b/doc/shared/RecentChanges.rst index 671c0051ac..f0d9cc2d83 100644 --- a/doc/shared/RecentChanges.rst +++ b/doc/shared/RecentChanges.rst @@ -1,6 +1,8 @@ -**Major Features** +** New Features and Enhancements ** -**New Features and Enhancements** +Unit tests were separated from examples. To that end, the following directories +were moved out of the ``examples/`` directory to the ``test/unit_tests`` directory: +``nvector``, ``sunmatrix``, ``sunlinsol``, and ``sunnonlinsol``. **Bug Fixes** @@ -8,5 +10,3 @@ Fixed a bug in ARKStep where an extra right-hand side evaluation would occur each time step when enabling the :c:func:`ARKodeSetAutonomous` option and using an IMEX method where the DIRK table has an implicit first stage and is not stiffly accurate. - -**Deprecation Notices** diff --git a/doc/shared/sundials.bib b/doc/shared/sundials.bib index 324fd9a0f9..23c131c154 100644 --- a/doc/shared/sundials.bib +++ b/doc/shared/sundials.bib @@ -27,7 +27,7 @@ % @techreport{arkode_ug, author = {Daniel R. Reynolds and David J. Gardner and Carol S. Woodward and Rujeko Chinomona and Cody J. Balos}, -title = {{User Documentation for ARKODE v6.2.0}}, +title = {{User Documentation for ARKODE v6.2.1}}, institution = {LLNL}, number = {LLNL-SM-668082}, year = 2024 @@ -37,7 +37,7 @@ @techreport{arkode_ug % @techreport{arkode_ex, author = {Daniel R. Reynolds}, -title = {{Example Programs for ARKODE v6.2.0}}, +title = {{Example Programs for ARKODE v6.2.1}}, institution = {Southern Methodist University}, year = 2024 } @@ -46,7 +46,7 @@ @techreport{arkode_ex % @techreport{cvode_ug, author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward}, -title = {{User Documentation for CVODE v7.2.0}}, +title = {{User Documentation for CVODE v7.2.1}}, institution = {LLNL}, number = {UCRL-SM-208108}, year = 2024 @@ -56,7 +56,7 @@ @techreport{cvode_ug % @techreport{cvode_ex, author = {Alan C. Hindmarsh and Radu Serban}, -title = {{Example Programs for CVODE v7.2.0}}, +title = {{Example Programs for CVODE v7.2.1}}, institution = {LLNL}, note = {UCRL-SM-208110}, year = 2024 @@ -66,7 +66,7 @@ @techreport{cvode_ex % @techreport{cvodes_ug, author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward}, -title = {{User Documentation for CVODES v7.2.0}}, +title = {{User Documentation for CVODES v7.2.1}}, institution = {LLNL}, note = {UCRL-SM-208111}, year = 2024 @@ -76,7 +76,7 @@ @techreport{cvodes_ug % @techreport{cvodes_ex, author = {Radu Serban and Alan C. Hindmarsh}, -title = {{Example Programs for CVODES v7.2.0}}, +title = {{Example Programs for CVODES v7.2.1}}, institution = {LLNL}, number = {UCRL-SM-208115}, year = 2024 @@ -86,7 +86,7 @@ @techreport{cvodes_ex % @techreport{ida_ug, author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward}, -title = {{User Documentation for IDA v7.2.0}}, +title = {{User Documentation for IDA v7.2.1}}, institution = {LLNL}, number = {UCRL-SM-208112}, year = 2024 @@ -96,7 +96,7 @@ @techreport{ida_ug % @techreport{ida_ex, author = {Alan C. Hindmarsh and Radu Serban and Aaron Collier}, -title = {{Example Programs for IDA v7.2.0}}, +title = {{Example Programs for IDA v7.2.1}}, institution = {LLNL}, number = {UCRL-SM-208113}, year = 2024 @@ -106,7 +106,7 @@ @techreport{ida_ex % @techreport{idas_ug, 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}, -title = {{User Documentation for IDAS v6.2.0}}, +title = {{User Documentation for IDAS v6.2.1}}, institution = {LLNL}, number = {UCRL-SM-234051}, year = 2024 @@ -116,7 +116,7 @@ @techreport{idas_ug % @techreport{idas_ex, author = {Radu Serban and Alan C. Hindmarsh}, -title = {{Example Programs for IDAS v6.2.0}}, +title = {{Example Programs for IDAS v6.2.1}}, institution = {LLNL}, number = {LLNL-TR-437091}, year = 2024 @@ -126,7 +126,7 @@ @techreport{idas_ex % @techreport{kinsol_ug, author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward}, -title = {{User Documentation for KINSOL v7.2.0}}, +title = {{User Documentation for KINSOL v7.2.1}}, institution = {LLNL}, number = {UCRL-SM-208116}, year = 2024 @@ -136,7 +136,7 @@ @techreport{kinsol_ug % @techreport{kinsol_ex, author = {Aaron M. Collier and Radu Serban}, -title = {{Example Programs for KINSOL v7.2.0}}, +title = {{Example Programs for KINSOL v7.2.1}}, institution = {LLNL}, number = {UCRL-SM-208114}, year = 2024 diff --git a/doc/shared/sundials_vars.py b/doc/shared/sundials_vars.py index ef24d2533a..d9147b7d27 100644 --- a/doc/shared/sundials_vars.py +++ b/doc/shared/sundials_vars.py @@ -9,14 +9,14 @@ # SPDX-License-Identifier: BSD-3-Clause # SUNDIALS Copyright End # ---------------------------------------------------------------- -doc_version = 'develop' -sundials_version = 'v7.2.0' -arkode_version = 'v6.2.0' -cvode_version = 'v7.2.0' -cvodes_version = 'v7.2.0' -ida_version = 'v7.2.0' -idas_version = 'v6.2.0' -kinsol_version = 'v7.2.0' +doc_version = 'v7.2.1' +sundials_version = 'v7.2.1' +arkode_version = 'v6.2.1' +cvode_version = 'v7.2.1' +cvodes_version = 'v7.2.1' +ida_version = 'v7.2.1' +idas_version = 'v6.2.1' +kinsol_version = 'v7.2.1' year = '2024' # Warn about all references where the target cannot be found diff --git a/doc/sundials/biblio.bib b/doc/sundials/biblio.bib index c6841b90ee..057e06ff53 100644 --- a/doc/sundials/biblio.bib +++ b/doc/sundials/biblio.bib @@ -16,7 +16,7 @@ @techreport{arkode_ug, author={Daniel R. Reynolds and David J. Gardner and Alan C. Hindmarsh and Carol S. Woodward and Jean M. Sexton}, -title={{User Documentation for ARKODE v6.2.0}}, +title={{User Documentation for ARKODE v6.2.1}}, institution={LLNL}, number={LLNL-SM-668082}, year = 2024 @@ -26,7 +26,7 @@ @techreport{arkode_ug % @techreport{arkode_ex, author={Daniel R. Reynolds}, -title={{Example Programs for ARKODE v6.2.0}}, +title={{Example Programs for ARKODE v6.2.1}}, institution={Southern Methodist University}, year = 2024 } @@ -35,7 +35,7 @@ @techreport{arkode_ex % @techreport{cvode_ug, author={A. C. Hindmarsh and R. Serban}, -title={{User Documentation for CVODE v7.2.0}}, +title={{User Documentation for CVODE v7.2.1}}, institution={LLNL}, number={UCRL-SM-208108}, year = 2024 @@ -45,7 +45,7 @@ @techreport{cvode_ug % @techreport{cvode_ex, author={A. C. Hindmarsh and R. Serban and D. R. Reynolds}, -title={{Example Programs for CVODE v7.2.0}}, +title={{Example Programs for CVODE v7.2.1}}, institution={LLNL}, note={UCRL-SM-208110}, year = 2024 @@ -55,7 +55,7 @@ @techreport{cvode_ex % @techreport{cvodes_ug, author={A. C. Hindmarsh and R. Serban}, -title={{User Documentation for CVODES v7.2.0}}, +title={{User Documentation for CVODES v7.2.1}}, institution={LLNL}, note={UCRL-SM-208111}, year = 2024 @@ -65,7 +65,7 @@ @techreport{cvodes_ug % @techreport{cvodes_ex, author={R. Serban and A. C. Hindmarsh}, -title={{Example Programs for CVODES v7.2.0}}, +title={{Example Programs for CVODES v7.2.1}}, institution={LLNL}, number={UCRL-SM-208115}, year = 2024 @@ -75,7 +75,7 @@ @techreport{cvodes_ex % @techreport{ida_ug, author={A. C. Hindmarsh and R. Serban and A. Collier}, -title={{User Documentation for IDA v7.2.0}}, +title={{User Documentation for IDA v7.2.1}}, institution={LLNL}, number={UCRL-SM-208112}, year = 2024 @@ -85,7 +85,7 @@ @techreport{ida_ug % @techreport{ida_ex, author={A. C. Hindmarsh and R. Serban and A. Collier}, -title={{Example Programs for IDA v7.2.0}}, +title={{Example Programs for IDA v7.2.1}}, institution={LLNL}, number={UCRL-SM-208113}, year = 2024 @@ -95,7 +95,7 @@ @techreport{ida_ex % @techreport{idas_ug, author={R. Serban and C. Petra and A. C. Hindmarsh}, -title={{User Documentation for IDAS v6.2.0}}, +title={{User Documentation for IDAS v6.2.1}}, institution={LLNL}, number={UCRL-SM-234051}, year = 2024 @@ -105,7 +105,7 @@ @techreport{idas_ug % @techreport{idas_ex, author={R. Serban and A. C. Hindmarsh}, -title={{Example Programs for IDAS v6.2.0}}, +title={{Example Programs for IDAS v6.2.1}}, institution={LLNL}, number={LLNL-TR-437091}, year = 2024 @@ -115,7 +115,7 @@ @techreport{idas_ex % @techreport{kinsol_ug, author={A. M. Collier and A. C. Hindmarsh and R. Serban and C.S. Woodward}, -title={{User Documentation for KINSOL v7.2.0}}, +title={{User Documentation for KINSOL v7.2.1}}, institution={LLNL}, number={UCRL-SM-208116}, year = 2024 @@ -125,7 +125,7 @@ @techreport{kinsol_ug % @techreport{kinsol_ex, author={A. M. Collier and R. Serban}, -title={{Example Programs for KINSOL v7.2.0}}, +title={{Example Programs for KINSOL v7.2.1}}, institution={LLNL}, number={UCRL-SM-208114}, year = 2024 diff --git a/doc/sundials/ug.tex b/doc/sundials/ug.tex index 46c6705121..b411b956ea 100644 --- a/doc/sundials/ug.tex +++ b/doc/sundials/ug.tex @@ -59,29 +59,29 @@ %----- VERSIONS AND UCRL NUMBERS OF SUNDIALS CODES -\newcommand{\sunrelease}{v7.2.0} +\newcommand{\sunrelease}{v7.2.1} -\newcommand{\cvrelease}{v7.2.0} +\newcommand{\cvrelease}{v7.2.1} \newcommand{\cvucrlug}{UCRL-SM-208108} \newcommand{\cvucrlex}{UCRL-SM-208110} -\newcommand{\cvsrelease}{v7.2.0} +\newcommand{\cvsrelease}{v7.2.1} \newcommand{\cvsucrlug}{UCRL-SM-208111} \newcommand{\cvsucrlex}{UCRL-SM-208115} -\newcommand{\idarelease}{v7.2.0} +\newcommand{\idarelease}{v7.2.1} \newcommand{\idaucrlug}{UCRL-SM-208112} \newcommand{\idaucrlex}{UCRL-SM-208113} -\newcommand{\idasrelease}{v6.2.0} +\newcommand{\idasrelease}{v6.2.1} \newcommand{\idasucrlug}{UCRL-SM-234051} \newcommand{\idasucrlex}{LLNL-TR-437091} -\newcommand{\kinrelease}{v7.2.0} +\newcommand{\kinrelease}{v7.2.1} \newcommand{\kinucrlug}{UCRL-SM-208116} \newcommand{\kinucrlex}{UCRL-SM-208114} -\newcommand{\arkrelease}{v6.2.0} +\newcommand{\arkrelease}{v6.2.1} \newcommand{\arkucrlug}{LLNL-SM-668082} \newcommand{\arkucrlex}{????-??-??????} diff --git a/scripts/tarscript b/scripts/tarscript index 7a21b2ad91..04e74fa354 100755 --- a/scripts/tarscript +++ b/scripts/tarscript @@ -57,13 +57,13 @@ function print_usage # VERSION NUMBERS #--------------------------------------------------------- -SUN_VER="7.2.0" -CV_VER="7.2.0" -CVS_VER="7.2.0" -IDA_VER="7.2.0" -IDAS_VER="6.2.0" -KIN_VER="7.2.0" -ARK_VER="6.2.0" +SUN_VER="7.2.1" +CV_VER="7.2.1" +CVS_VER="7.2.1" +IDA_VER="7.2.1" +IDAS_VER="6.2.1" +KIN_VER="7.2.1" +ARK_VER="6.2.1" #--------------------------------------------------------- # Test if the script is executed from within its directory diff --git a/scripts/updateVersion.sh b/scripts/updateVersion.sh index 34c7f6cf6b..08a13693b9 100755 --- a/scripts/updateVersion.sh +++ b/scripts/updateVersion.sh @@ -20,7 +20,7 @@ # releases the label string is "". sun_major=${1:-7} sun_minor=${2:-2} -sun_patch=${3:-0} +sun_patch=${3:-1} sun_label=${4:-""} month=${5:-$(date +"%b")} year=${6:-$(date +"%Y")} diff --git a/src/arkode/README.md b/src/arkode/README.md index 15bfa40d37..234f980d92 100644 --- a/src/arkode/README.md +++ b/src/arkode/README.md @@ -1,5 +1,5 @@ # ARKODE -### Version 6.2.0 (Dec 2024) +### Version 6.2.1 (Dec 2024) **Daniel R. Reynolds, Department of Mathematics, SMU** @@ -44,8 +44,8 @@ the "SUNDIALS Release History" appendix of the ARKODE User Guide. ## References * D. R. Reynolds, D. J. Gardner, C. S. Woodward, and C. J. Balos, - "User Documentation for ARKODE v6.2.0," LLNL technical report + "User Documentation for ARKODE v6.2.1," LLNL technical report LLNL-SM-668082, Dec 2024. -* D. R. Reynolds, "Example Programs for ARKODE v6.2.0," Technical Report, +* D. R. Reynolds, "Example Programs for ARKODE v6.2.1," Technical Report, Southern Methodist University Center for Scientific Computation, Dec 2024. diff --git a/src/cvode/README.md b/src/cvode/README.md index e589f0d9c1..16875fb257 100644 --- a/src/cvode/README.md +++ b/src/cvode/README.md @@ -1,5 +1,5 @@ # CVODE -### Version 7.2.0 (Dec 2024) +### Version 7.2.1 (Dec 2024) **Alan C. Hindmarsh, Radu Serban, Cody J. Balos, David J. Gardner, and Carol S. Woodward, Center for Applied Scientific Computing, LLNL** @@ -47,10 +47,10 @@ the "SUNDIALS Release History" appendix of the CVODE User Guide. ## References * A. C. Hindmarsh, R. Serban, C. J. Balos, D. J. Gardner, D. R. Reynolds - and C. S. Woodward, "User Documentation for CVODE v7.2.0," + and C. S. Woodward, "User Documentation for CVODE v7.2.1," LLNL technical report UCRL-SM-208108, Dec 2024. -* A. C. Hindmarsh and R. Serban, "Example Programs for CVODE v7.2.0," +* A. C. Hindmarsh and R. Serban, "Example Programs for CVODE v7.2.1," LLNL technical report UCRL-SM-208110, Dec 2024. * S.D. Cohen and A.C. Hindmarsh, "CVODE, a Stiff/nonstiff ODE Solver in C," diff --git a/src/cvodes/README.md b/src/cvodes/README.md index a7ae59ee64..aa3447fcdd 100644 --- a/src/cvodes/README.md +++ b/src/cvodes/README.md @@ -1,5 +1,5 @@ # CVODES -### Version 7.2.0 (Dec 2024) +### Version 7.2.1 (Dec 2024) **Alan C. Hindmarsh, Radu Serban, Cody J. Balos, David J. Gardner, and Carol S. Woodward, Center for Applied Scientific Computing, LLNL** @@ -44,10 +44,10 @@ the "SUNDIALS Release History" appendix of the CVODES User Guide. ## References * A. C. Hindmarsh, R. Serban, C. J. Balos, D. J. Gardner, D. R. Reynolds - and C. S. Woodward, "User Documentation for CVODES v7.2.0," + and C. S. Woodward, "User Documentation for CVODES v7.2.1," LLNL technical report UCRL-SM-208111, Dec 2024. -* A. C. Hindmarsh and R. Serban, "Example Programs for CVODES v7.2.0," +* A. C. Hindmarsh and R. Serban, "Example Programs for CVODES v7.2.1," LLNL technical report UCRL-SM-208115, Dec 2024. * R. Serban and A. C. Hindmarsh, "CVODES: the Sensitivity-Enabled ODE diff --git a/src/ida/README.md b/src/ida/README.md index da5bb1d29a..f756b9957e 100644 --- a/src/ida/README.md +++ b/src/ida/README.md @@ -1,5 +1,5 @@ # IDA -### Version 7.2.0 (Dec 2024) +### Version 7.2.1 (Dec 2024) **Alan C. Hindmarsh, Radu Serban, Cody J. Balos, David J. Gardner, and Carol S. Woodward, Center for Applied Scientific Computing, LLNL** @@ -47,10 +47,10 @@ the "SUNDIALS Release History" appendix of the IDA User Guide. ## References * A. C. Hindmarsh, R. Serban, C. J. Balos, D. J. Gardner, D. R. Reynolds - and C. S. Woodward, "User Documentation for IDA v7.2.0," + and C. S. Woodward, "User Documentation for IDA v7.2.1," LLNL technical report UCRL-SM-208112, Dec 2024. -* A. C. Hindmarsh, R. Serban, and A. Collier, "Example Programs for IDA v7.2.0," +* A. C. Hindmarsh, R. Serban, and A. Collier, "Example Programs for IDA v7.2.1," LLNL technical report UCRL-SM-208113, Dec 2024. * A. C. Hindmarsh, P. N. Brown, K. E. Grant, S. L. Lee, R. Serban, diff --git a/src/idas/README.md b/src/idas/README.md index 628f1f7ff3..3e894f8fde 100644 --- a/src/idas/README.md +++ b/src/idas/README.md @@ -1,5 +1,5 @@ # IDAS -### Version 6.2.0 (Dec 2024) +### Version 6.2.1 (Dec 2024) **Radu Serban, Cosmin Petra, Alan C. Hindmarsh, Cody J. Balos, David J. Gardner, and Carol S. Woodward, Center for Applied Scientific Computing, LLNL** @@ -43,10 +43,10 @@ the "SUNDIALS Release History" appendix of the IDAS User Guide. ## References * R. Serban, C. Petra, A. C. Hindmarsh, C. J. Balos, D. J. Gardner, - D. R. Reynolds and C. S. Woodward, "User Documentation for IDAS v6.2.0," + D. R. Reynolds and C. S. Woodward, "User Documentation for IDAS v6.2.1," LLNL technical report UCRL-SM-234051, Dec 2024. -* R. Serban and A.C. Hindmarsh, "Example Programs for IDAS v6.2.0," +* R. Serban and A.C. Hindmarsh, "Example Programs for IDAS v6.2.1," LLNL technical report LLNL-TR-437091, Dec 2024. * A. C. Hindmarsh, P. N. Brown, K. E. Grant, S. L. Lee, R. Serban, diff --git a/src/kinsol/README.md b/src/kinsol/README.md index c9c0214215..fdf9969809 100644 --- a/src/kinsol/README.md +++ b/src/kinsol/README.md @@ -1,5 +1,5 @@ # KINSOL -### Version 7.2.0 (Dec 2024) +### Version 7.2.1 (Dec 2024) **Alan C. Hindmarsh, Radu Serban, Cody J. Balos, David J. Gardner, and Carol S. Woodward, Center for Applied Scientific Computing, LLNL** @@ -48,10 +48,10 @@ the "SUNDIALS Release History" appendix of the KINSOL User Guide. * A. C. Hindmarsh, R. Serban, C. J. Balos, D. J. Gardner, D. R. Reynolds and C. S. Woodward, - "User Documentation for KINSOL v7.2.0," LLNL technical report + "User Documentation for KINSOL v7.2.1," LLNL technical report UCRL-SM-208116, Dec 2024. -* A. M. Collier and R. Serban, "Example Programs for KINSOL v7.2.0," +* A. M. Collier and R. Serban, "Example Programs for KINSOL v7.2.1," LLNL technical report UCRL-SM-208114, Dec 2024. * A. C. Hindmarsh, P. N. Brown, K. E. Grant, S. L. Lee, R. Serban,