From e55336dbcd1b81b414f3d281bbab7f8bb5c16755 Mon Sep 17 00:00:00 2001 From: JoerivanEngelen Date: Wed, 27 Aug 2025 16:48:26 +0200 Subject: [PATCH] Update version to 1.0.0rc5 --- docs/api/changelog.rst | 4 ++-- docs/installation.rst | 6 +++--- imod/__init__.py | 2 +- pixi.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index 8ea3e8e91..a45deaf36 100644 --- a/docs/api/changelog.rst +++ b/docs/api/changelog.rst @@ -6,8 +6,8 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog`_, and this project adheres to `Semantic Versioning`_. -[Unreleased] ------------- +[1.0.0rc5] - 2025-08-27 +----------------------- Added ~~~~~ diff --git a/docs/installation.rst b/docs/installation.rst index 217bf141d..b1e5b3358 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -29,15 +29,15 @@ Install beta release To install a beta release with pixi:: pixi config prepend default-channels "conda-forge/label/imod_rc" - pixi add imod=1.0.0rc4 + pixi add imod=1.0.0rc5 Or with conda:: - conda install -c conda-forge/label/imod_rc -c conda-forge imod=1.0.0rc4 + conda install -c conda-forge/label/imod_rc -c conda-forge imod=1.0.0rc5 Or with pip:: - pip install --pre imod=1.0.0rc4 + pip install --pre imod=1.0.0rc5 Which Python? diff --git a/imod/__init__.py b/imod/__init__.py index 38c40cba5..f3492d1ed 100644 --- a/imod/__init__.py +++ b/imod/__init__.py @@ -14,4 +14,4 @@ ) from imod.formats import gen, idf, ipf, prj, rasterio -__version__ = "1.0.0rc4" +__version__ = "1.0.0rc5" diff --git a/pixi.toml b/pixi.toml index 9b281b800..1fca63965 100644 --- a/pixi.toml +++ b/pixi.toml @@ -1,6 +1,6 @@ [project] name = "imod-python" -version = "1.0.0rc4" +version = "1.0.0rc5" description = "Make massive MODFLOW models" authors = ["Deltares "] channels = ["conda-forge"]