From ee8d7615f527f8f2caee64f932f7d1af19665056 Mon Sep 17 00:00:00 2001 From: Gaurav Dudeja Date: Wed, 3 Dec 2025 21:29:08 +0530 Subject: [PATCH 1/2] added bump version --- .bumpversion.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3d50c75..caa7027 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -8,3 +8,4 @@ message = [RELEASE] Bump version: {current_version} → {new_version} [bumpversion:file:pyproject.toml] search = version = "{current_version}" replace = version = "{new_version}" +# dummy text From 28ad78bd53c00d9d3b1662562be3189fb40374a7 Mon Sep 17 00:00:00 2001 From: Gaurav Dudeja Date: Wed, 3 Dec 2025 21:35:31 +0530 Subject: [PATCH 2/2] allow dirty write --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 22f41e0..1b89dd6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -176,7 +176,7 @@ jobs: EOF # Bump the version - bump2version $BUMP_TYPE + bump2version --allow-dirty $BUMP_TYPE # Get the new version NEW_VERSION=$(grep '^version = ' pyproject.toml | cut -d'"' -f2)