From 98523bbc4430b88694ae48f59743667bdfdeae77 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Fri, 18 Jul 2025 04:48:43 -0400 Subject: [PATCH 1/3] 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 1e8ea47..535ee20 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -1,5 +1,5 @@ { - "_commit": "d45018be327e453005ff2892d5ae1842610d717a", + "_commit": "6d83d01ac0224e851fb5572743c35a57ecda8f70", "_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 b70ef5b..1aea26b 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "commit": "d45018be327e453005ff2892d5ae1842610d717a", + "commit": "6d83d01ac0224e851fb5572743c35a57ecda8f70", "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": "d45018be327e453005ff2892d5ae1842610d717a" + "_commit": "6d83d01ac0224e851fb5572743c35a57ecda8f70" } }, "directory": null diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index 091f40d..26c4bd1 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -105,10 +105,10 @@ jobs: git tag ${{ needs.build_and_testpypi.outputs.tag }} git push origin ${{ needs.build_and_testpypi.outputs.tag }} - - name: Publish package distributions to TestPyPI + - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 - name: Publish to GitHub env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: gh release upload ${{ needs.build_and_testpypi.outputs.tag }} dist/ + run: gh release upload ${{ needs.build_and_testpypi.outputs.tag }} dist/* From 38c600244f117e3f9f6471e134391e0483f585bf Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Fri, 18 Jul 2025 04:50:12 -0400 Subject: [PATCH 2/3] chore: update demo to the latest cookiecutter-robust-python --- .cookiecutter.json | 2 +- .cruft.json | 4 ++-- .github/workflows/release-python.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.cookiecutter.json b/.cookiecutter.json index 535ee20..b1865b0 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -1,5 +1,5 @@ { - "_commit": "6d83d01ac0224e851fb5572743c35a57ecda8f70", + "_commit": "db4672848aabde2ab6273607f309a280384fa36e", "_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 1aea26b..25858a8 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "commit": "6d83d01ac0224e851fb5572743c35a57ecda8f70", + "commit": "db4672848aabde2ab6273607f309a280384fa36e", "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": "6d83d01ac0224e851fb5572743c35a57ecda8f70" + "_commit": "db4672848aabde2ab6273607f309a280384fa36e" } }, "directory": null diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index 26c4bd1..50db487 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -102,7 +102,7 @@ jobs: - name: Create Tag run: | - git tag ${{ needs.build_and_testpypi.outputs.tag }} + git tag v${{ needs.build_and_testpypi.outputs.tag }} git push origin ${{ needs.build_and_testpypi.outputs.tag }} - name: Publish package distributions to PyPI From b627cbccbba4c5422a38e2538eab7e8d84d359c7 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Fri, 18 Jul 2025 04:51:18 -0400 Subject: [PATCH 3/3] =?UTF-8?q?bump:=20version=200.10.0=20=E2=86=92=200.11?= =?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 d22297a..c4d6c9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## v0.11.0 (2025-07-18) + ## v0.10.0 (2025-07-18) ## v0.9.0 (2025-07-18) diff --git a/pyproject.toml b/pyproject.toml index 31ed565..6f18123 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "robust-python-demo" -version = "0.10.0" +version = "0.11.0" description = "robust-python-demo" authors = [ { name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" },