From d5f61b803881eae5cae0b232eb58fd825c73cc88 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Fri, 18 Jul 2025 04:58:16 -0400 Subject: [PATCH 1/2] chore: update demo to the latest cookiecutter-robust-python --- .cookiecutter.json | 2 +- .cruft.json | 4 ++-- .github/workflows/release-python.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.cookiecutter.json b/.cookiecutter.json index b1865b0..1228b53 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -1,5 +1,5 @@ { - "_commit": "db4672848aabde2ab6273607f309a280384fa36e", + "_commit": "30f78cfcb3d3061ae70028ef40cbe37019b706f2", "_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", "add_rust_extension": false, "author": "Kyle Oliver", diff --git a/.cruft.json b/.cruft.json index 25858a8..ba202f3 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "commit": "db4672848aabde2ab6273607f309a280384fa36e", + "commit": "30f78cfcb3d3061ae70028ef40cbe37019b706f2", "checkout": null, "context": { "cookiecutter": { @@ -18,7 +18,7 @@ "license": "MIT", "development_status": "Development Status :: 1 - Planning", "_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "_commit": "db4672848aabde2ab6273607f309a280384fa36e" + "_commit": "30f78cfcb3d3061ae70028ef40cbe37019b706f2" } }, "directory": null diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index 50db487..e2f016f 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -31,7 +31,7 @@ jobs: - name: Get Current Version id: current_version - run: echo "CURRENT_VERSION=$(uvx --from commitizen cz version -p)" >> $GITHUB_OUTPUT + run: echo "CURRENT_VERSION=v$(uvx --from commitizen cz version -p)" >> $GITHUB_OUTPUT build_and_testpypi: @@ -102,7 +102,7 @@ jobs: - name: Create Tag run: | - git tag v${{ needs.build_and_testpypi.outputs.tag }} + git tag ${{ needs.build_and_testpypi.outputs.tag }} git push origin ${{ needs.build_and_testpypi.outputs.tag }} - name: Publish package distributions to PyPI From c9e46607cdcde181b08ccc341182e06ca4ba26b2 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Fri, 18 Jul 2025 04:58:28 -0400 Subject: [PATCH 2/2] =?UTF-8?q?bump:=20version=200.11.0=20=E2=86=92=200.12?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4d6c9f..2782734 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## v0.12.0 (2025-07-18) + ## v0.11.0 (2025-07-18) ## v0.10.0 (2025-07-18) diff --git a/pyproject.toml b/pyproject.toml index 6f18123..33f077c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "robust-python-demo" -version = "0.11.0" +version = "0.12.0" description = "robust-python-demo" authors = [ { name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" },