From cad10915b7727f46227503dfe11ff32989ab0abd Mon Sep 17 00:00:00 2001 From: Robert Speck Date: Wed, 24 Jan 2024 13:40:49 +0100 Subject: [PATCH] Version bump for new release --- CHANGELOG.md | 2 ++ CITATION.cff | 4 ++-- docs/source/conf.py | 6 +++--- pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6636fdbfd2..6ed6fbddd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ :arrow_left: [Back to main page](./README.md) +- January 24, 2024: Version 5.4.0 contains the code for the [second order SDC paper](https://arxiv.org/abs/2310.08352) by [\@ikrom96git](https://github.com/ikrom96git). It also has some changes to the FEniCS + part, including correct treatment of boundary conditions and first steps with FEniCS-x. - July 28, 2023: For Version 5.3 a lot of pull requests got merged, thanks to [\@brownbaerchen](https://github.com/brownbaerchen), [\@tlunet](https://github.com/tlunet), [\@lisawim](https://github.com/lisawim), [\@ikrom96git](https://github.com/ikrom96git) for all the contributions. Besides the usual bugfixing and polishing, `pySDC` now comes with linear multistep methods, classical Runge Kutta methods, DAE sweepers, and more/improved projects. diff --git a/CITATION.cff b/CITATION.cff index 2f8acf4f88..1b42027750 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -21,9 +21,9 @@ authors: orcid: https://orcid.org/0000-0002-8869-0784 affiliation: "Hamburg University of Technology, Institute of Mathematics, 21073 Hamburg, Germany" -version: 5.3.0 +version: 5.4.0 doi: 10.5281/zenodo.594191 -date-released: 2023-07-25 +date-released: 2024-01-24 keywords: - "parallel-in-time" - "spectral deferred corrections" diff --git a/docs/source/conf.py b/docs/source/conf.py index e4263ea756..0e496d5b2d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -62,7 +62,7 @@ # General information about the project. project = 'pySDC' -copyright = '2023, Robert Speck' +copyright = '2024, Robert Speck' author = 'Robert Speck, Thibaut Lunet, Thomas Baumann, Lisa Wimmer, Ikrom Akramov' # The version info for the project you're documenting, acts as replacement for @@ -70,9 +70,9 @@ # built documents. # # The short X.Y version. -version = '5.3' +version = '5.4' # The full version, including alpha/beta/rc tags. -release = '5.3.0' +release = '5.4.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index e7e5c78ef8..ea6a6c76c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = 'pySDC' -version = '5.3.0' +version = '5.4.0' description = 'A Python implementation of spectral deferred correction methods and the likes' license = {text = "BSD-2-Clause"} readme = 'README.md'