diff --git a/.github/release_reminder.md b/.github/release_reminder.md index 94066e80c8..09c524fbec 100644 --- a/.github/release_reminder.md +++ b/.github/release_reminder.md @@ -1,6 +1,6 @@ --- title: Create {{ date | date('YY.MM') }} (final or rc0) release -labels: priority:high +labels: "priority: high" --- Quarterly reminder to create a - diff --git a/.github/wheel_failure.md b/.github/wheel_failure.md index 107b4dd6d6..2bbe659358 100644 --- a/.github/wheel_failure.md +++ b/.github/wheel_failure.md @@ -1,6 +1,6 @@ --- title: Fortnightly build for wheels failed -labels: priority:high, bug +labels: "priority: high, bug" --- The build is failing with the following logs - {{ env.LOGS }} diff --git a/CHANGELOG.md b/CHANGELOG.md index eda34bcdd1..17adc3a31f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # [Unreleased](https://github.com/pybamm-team/PyBaMM/) +# [v24.1rc0](https://github.com/pybamm-team/PyBaMM/tree/v24.1rc0) - 2024-01-31 + ## Features - The `pybamm_install_odes` command now includes support for macOS systems and can be used to set up SUNDIALS and install the `scikits.odes` solver on macOS ([#3417](https://github.com/pybamm-team/PyBaMM/pull/3417)) diff --git a/CITATION.cff b/CITATION.cff index 44f1c5d407..494f226a89 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -24,6 +24,6 @@ keywords: - "expression tree" - "python" - "symbolic differentiation" -version: "23.9" +version: "24.1rc0" repository-code: "https://github.com/pybamm-team/PyBaMM" title: "Python Battery Mathematical Modelling (PyBaMM)" diff --git a/pybamm/version.py b/pybamm/version.py index 970be77f66..b2305df5cb 100644 --- a/pybamm/version.py +++ b/pybamm/version.py @@ -1 +1 @@ -__version__ = "23.9" +__version__ = "24.1rc0" diff --git a/pyproject.toml b/pyproject.toml index d01e4f8fc3..a39a37ecc4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ build-backend = "setuptools.build_meta" [project] name = "pybamm" -version = "23.9" +version = "24.1rc0" license = { file = "LICENSE.txt" } description = "Python Battery Mathematical Modelling" authors = [{name = "The PyBaMM Team", email = "pybamm@pybamm.org"}] diff --git a/scripts/update_version.py b/scripts/update_version.py index 30d2240e9c..1d2d64ce41 100644 --- a/scripts/update_version.py +++ b/scripts/update_version.py @@ -32,7 +32,9 @@ def update_version(): # pyproject.toml with open(os.path.join(pybamm.root_dir(), "pyproject.toml"), "r+") as file: output = file.read() - replace_version = re.sub('(?<=version = ")(.+)(?=")', release_version, output) + replace_version = re.sub( + r'(?<=\bversion = ")(.+)(?=")', release_version, output + ) file.truncate(0) file.seek(0) file.write(replace_version) diff --git a/vcpkg-configuration.json b/vcpkg-configuration.json index f33d9205b0..d97bc3c617 100644 --- a/vcpkg-configuration.json +++ b/vcpkg-configuration.json @@ -7,7 +7,7 @@ { "kind": "git", "repository": "https://github.com/pybamm-team/sundials-vcpkg-registry.git", - "baseline": "af9f5e4bc730bf2361c47f809dcfb733e7951faa", + "baseline": "13d432fcf5da8591bb6cb2d46be9d6acf39cd02b", "packages": ["sundials"] }, { diff --git a/vcpkg.json b/vcpkg.json index f62c18ddd2..911703e7cf 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -1,6 +1,6 @@ { "name": "pybamm", - "version-string": "23.9", + "version-string": "24.1rc0", "dependencies": [ "casadi", {