From a517ca0ad62876e4ac58c98dbcbad60478642ac7 Mon Sep 17 00:00:00 2001 From: foefl Date: Thu, 23 Oct 2025 10:59:29 +0200 Subject: [PATCH] add version string for 3.11.14 --- pyproject.toml | 4 ++-- src/pycage/constants.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7e4a099..845bbac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pycage" -version = "0.2.7" +version = "0.2.8" description = "tool to handle standalone Python installations from the CLI" authors = [ {name = "Florian Förster", email = "f.foerster@d-opt.com"}, @@ -78,7 +78,7 @@ directory = "reports/coverage" [tool.bumpversion] -current_version = "0.2.7" +current_version = "0.2.8" parse = """(?x) (?P0|[1-9]\\d*)\\. (?P0|[1-9]\\d*)\\. diff --git a/src/pycage/constants.py b/src/pycage/constants.py index 09ebc3b..c405b5b 100644 --- a/src/pycage/constants.py +++ b/src/pycage/constants.py @@ -13,4 +13,5 @@ PyVersionToReleaseTag: TypeAlias = tuple[str, str] PY_VERSION_TO_RELEASE_TAG_PAIRS: Final[tuple[PyVersionToReleaseTag, ...]] = ( ("3.11.12", "20250409"), ("3.11.13", "20250702"), + ("3.11.14", "20251014"), )