From 01072a7fa1d5b0a5afa6eeeba5651ce2dfc37d65 Mon Sep 17 00:00:00 2001 From: Jean-Pierre Chauvel Date: Fri, 5 Sep 2025 08:44:16 -0500 Subject: [PATCH 1/2] bump version should follow tags, fixes #46 --- bin/bump-version.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/bump-version.py b/bin/bump-version.py index 551c1e4..fa5efca 100755 --- a/bin/bump-version.py +++ b/bin/bump-version.py @@ -36,6 +36,8 @@ def main() -> None: subprocess.run(["git", "add", "uv.lock"]) subprocess.run(["git", "add", "pyproject.toml"]) subprocess.run(["git", "commit", "-m", f"bump version to {version}"]) + subprocess.run(["git", "tag", f"v{version}"]) + subprocess.run(["git", "push", "--tags"]) if __name__ == "__main__": From b9d9e29f68a7b48a75fac9e74f3a8f64b2f689a9 Mon Sep 17 00:00:00 2001 From: Jean-Pierre Chauvel Date: Fri, 5 Sep 2025 08:45:25 -0500 Subject: [PATCH 2/2] bump version to 0.2.4 --- pyproject.toml | 2 +- uv.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1d280c5..83f8835 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "edit-python-pe" -version = "0.2.3" +version = "0.2.4" description = "Allows member and project profile editing onto python.pe git repository" readme = "README.md" authors = [ diff --git a/uv.lock b/uv.lock index fd588a3..f914cb3 100644 --- a/uv.lock +++ b/uv.lock @@ -1068,7 +1068,7 @@ upload-time = "2025-07-17T16:51:58.613Z" [[package]] name = "edit-python-pe" -version = "0.2.3" +version = "0.2.4" dependencies = [ { name = "babel" }, { name = "platformdirs" },