diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bfc997a50..100ebb54da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # SUNDIALS Changelog +## Changes to SUNDIALS in release X.Y.Z + +### Major Features + +### New Features and Enhancements + +### Bug Fixes + +### Deprecation Notices + ## Changes to SUNDIALS in release 7.2.1 ### New Features and Enhancements diff --git a/doc/arkode/guide/source/Introduction.rst b/doc/arkode/guide/source/Introduction.rst index d00e94ec1f..a8e4d53d20 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 6.2.1 +Changes to SUNDIALS in release X.Y.Z ==================================== .. include:: ../../../shared/RecentChanges.rst diff --git a/doc/cvode/guide/source/Introduction.rst b/doc/cvode/guide/source/Introduction.rst index 8e96f07d2c..3657a9c6b5 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 7.2.1 +Changes to SUNDIALS in release X.Y.Z ==================================== .. include:: ../../../shared/RecentChanges.rst diff --git a/doc/cvodes/guide/source/Introduction.rst b/doc/cvodes/guide/source/Introduction.rst index 7c62846d6c..b2883b9050 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 7.2.1 +Changes to SUNDIALS in release X.Y.Z ==================================== .. include:: ../../../shared/RecentChanges.rst diff --git a/doc/ida/guide/source/Introduction.rst b/doc/ida/guide/source/Introduction.rst index 402ede18a1..2ccf5ede24 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 7.2.1 +Changes to SUNDIALS in release X.Y.Z ==================================== .. include:: ../../../shared/RecentChanges.rst diff --git a/doc/idas/guide/source/Introduction.rst b/doc/idas/guide/source/Introduction.rst index 370d67f9b0..5fe9913428 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 6.2.1 +Changes to SUNDIALS in release X.Y.Z ==================================== .. include:: ../../../shared/RecentChanges.rst diff --git a/doc/kinsol/guide/source/Introduction.rst b/doc/kinsol/guide/source/Introduction.rst index eacc21babe..6961e9da38 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 7.2.1 +Changes to SUNDIALS in release X.Y.Z ==================================== .. include:: ../../../shared/RecentChanges.rst diff --git a/doc/shared/Changelog.rst b/doc/shared/Changelog.rst index 820168b155..bcb8a58fdd 100644 --- a/doc/shared/Changelog.rst +++ b/doc/shared/Changelog.rst @@ -21,11 +21,27 @@ Changelog .. SED_REPLACEMENT_KEY -Changes to SUNDIALS in release 7.2.1 +Changes to SUNDIALS in release X.Y.Z ==================================== .. include:: RecentChanges_link.rst +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 +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. + Changes to SUNDIALS in release 7.2.0 ==================================== diff --git a/doc/shared/RecentChanges.rst b/doc/shared/RecentChanges.rst index f0d9cc2d83..4f1514700e 100644 --- a/doc/shared/RecentChanges.rst +++ b/doc/shared/RecentChanges.rst @@ -1,12 +1,7 @@ -** New Features and Enhancements ** +**Major Features** -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``. +**New Features and Enhancements** **Bug Fixes** -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_vars.py b/doc/shared/sundials_vars.py index d9147b7d27..6e437b2fd3 100644 --- a/doc/shared/sundials_vars.py +++ b/doc/shared/sundials_vars.py @@ -9,7 +9,7 @@ # SPDX-License-Identifier: BSD-3-Clause # SUNDIALS Copyright End # ---------------------------------------------------------------- -doc_version = 'v7.2.1' +doc_version = 'develop' sundials_version = 'v7.2.1' arkode_version = 'v6.2.1' cvode_version = 'v7.2.1'