diff --git a/core/Project.toml b/core/Project.toml index dd3b5b263..bf229e553 100644 --- a/core/Project.toml +++ b/core/Project.toml @@ -2,7 +2,7 @@ name = "Ribasim" uuid = "aac5e3d9-0b8f-4d4f-8241-b1a7a9632635" authors = ["Deltares and contributors "] manifest = "../Manifest.toml" -version = "2024.02.0" +version = "2024.2.0" [deps] Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697" diff --git a/docs/contribute/release.qmd b/docs/contribute/release.qmd index e069cce55..a94506ec2 100644 --- a/docs/contribute/release.qmd +++ b/docs/contribute/release.qmd @@ -21,8 +21,8 @@ Before starting the release process, ensure that all tests are passing and that ## Update version numbers of the components -Determine the new version number like `2023.08.0`, filling in the current year, month and a sequential "MICRO" number. -This follows `YYYY.0M.MICRO` from [calver](https://calver.org/). +Determine the new version number like `2023.1.0`, filling in the current year, a bumped `MINOR` number for normal releases and a bumped `MICRO` number for non-breaking, hotfix releases. +This follows `YYYY.MINOR.MICRO` from [calver](https://calver.org/). Update the version numbers in the repository to the new version number. A single find and replace can update all 5 locations: @@ -39,7 +39,7 @@ Now submit a pull request to update the version numbers. When the pull request is merged to main, checkout the commit that updates the version numbers. -Create a new tag, which is the letter `v` followed by the version number, like, `v2023.08.0`. +Create a new tag, which is the letter `v` followed by the version number, like, `v2023.8.0`. This can be done by executing: ```bash diff --git a/pixi.toml b/pixi.toml index a09507ee2..6fcf49e64 100644 --- a/pixi.toml +++ b/pixi.toml @@ -1,6 +1,6 @@ [project] name = "Ribasim" -version = "2024.02.0" +version = "2024.2.0" description = "Water resources modeling" authors = ["Deltares and contributors "] channels = ["conda-forge"] diff --git a/python/ribasim/ribasim/__init__.py b/python/ribasim/ribasim/__init__.py index a47bff109..6526455f3 100644 --- a/python/ribasim/ribasim/__init__.py +++ b/python/ribasim/ribasim/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2024.02.0" +__version__ = "2024.2.0" from ribasim import models, utils diff --git a/python/ribasim_api/ribasim_api/__init__.py b/python/ribasim_api/ribasim_api/__init__.py index 2418918e8..c761279d3 100644 --- a/python/ribasim_api/ribasim_api/__init__.py +++ b/python/ribasim_api/ribasim_api/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2024.02.0" +__version__ = "2024.2.0" from ribasim_api.ribasim_api import RibasimApi diff --git a/ribasim_qgis/metadata.txt b/ribasim_qgis/metadata.txt index 2a093277a..969da2051 100644 --- a/ribasim_qgis/metadata.txt +++ b/ribasim_qgis/metadata.txt @@ -7,7 +7,7 @@ name=Ribasim-QGIS qgisMinimumVersion=3.0 description=QGIS plugin to setup Ribasim models -version=2024.02.1 +version=2024.2.0 author=Deltares and contributors email=ribasim.info@deltares.nl