From 40fccd3e93a26c98f011fa9d0d737362f6764491 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Fri, 18 Jul 2025 03:55:14 -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 | 6 ++---- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.cookiecutter.json b/.cookiecutter.json index 1cf82b8..a69b118 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -1,5 +1,5 @@ { - "_commit": "f513255bdee8595d2507fb6515795e2b6bf8b362", + "_commit": "a98f2e32f30880d0d960acc164e39d8775487ac9", "_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 b5c0fe3..2ab48ef 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "commit": "f513255bdee8595d2507fb6515795e2b6bf8b362", + "commit": "a98f2e32f30880d0d960acc164e39d8775487ac9", "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": "f513255bdee8595d2507fb6515795e2b6bf8b362" + "_commit": "a98f2e32f30880d0d960acc164e39d8775487ac9" } }, "directory": null diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index 3dd5c87..b8f9a0b 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -70,8 +70,7 @@ jobs: - name: Publish to TestPyPI env: - TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.TESTPYPI_API_TOKEN }} + UV_PUBLISH_TOKEN: ${{ secrets.TESTPYPI_API_TOKEN }} run: uvx nox -s publish-python -- --index testpypi publish_pypi_and_github: @@ -104,8 +103,7 @@ jobs: - name: Publish to PyPI env: - TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} + UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }} run: uvx nox -s publish-python - name: Publish to GitHub From 9850b3171cc25669cd29c319f99d89d9c522cbab Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Fri, 18 Jul 2025 03:55:33 -0400 Subject: [PATCH 2/2] =?UTF-8?q?bump:=20version=200.6.0=20=E2=86=92=200.7.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 5611b4e..d2f323b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## v0.7.0 (2025-07-18) + ## v0.6.0 (2025-07-18) ## v0.5.0 (2025-07-18) diff --git a/pyproject.toml b/pyproject.toml index 055cc6f..eee5251 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "robust-python-demo" -version = "0.6.0" +version = "0.7.0" description = "robust-python-demo" authors = [ { name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" },