Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

start next release cycle #629

Merged
merged 2 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/arkode/guide/source/Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/cvode/guide/source/Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/cvodes/guide/source/Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/ida/guide/source/Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/idas/guide/source/Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/kinsol/guide/source/Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
18 changes: 17 additions & 1 deletion doc/shared/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
====================================

Expand Down
11 changes: 3 additions & 8 deletions doc/shared/RecentChanges.rst
Original file line number Diff line number Diff line change
@@ -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**
2 changes: 1 addition & 1 deletion doc/shared/sundials_vars.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Loading