From db2da36d5b8e6b41373ada1124ccd4ba5db3f9df Mon Sep 17 00:00:00 2001 From: Luciano Lorenti Date: Sun, 25 Feb 2024 00:27:41 +0100 Subject: [PATCH] Documentation: Fix RELEASING.md --- .bumpversion.cfg | 2 +- RELEASING.md | 2 +- ceruleo/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7b48c58e..3bb83453 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.3 +current_version = 3.0.1 commit = True tag = True diff --git a/RELEASING.md b/RELEASING.md index 59571253..9784376b 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -1,7 +1,7 @@ # Releasing a new version Publication in pypi is made automatically by a GitHub action. The action is executed when a tag starting with "v" is pushed to main. -The version must coincide with ceruleo/__init__.py:__version__ +The tag must correspond to the version of `bumpversion.cfg` and ceruleo/__init__.py:__version__ ```bash git tag -a "v2.0.0" -m "Description of the release" diff --git a/ceruleo/__init__.py b/ceruleo/__init__.py index 28e2a905..c76e193a 100644 --- a/ceruleo/__init__.py +++ b/ceruleo/__init__.py @@ -9,4 +9,4 @@ CACHE_PATH.mkdir(parents=True, exist_ok=True) -__version__ = "3.0.0" +__version__ = "3.0.1"