From fcf5422bffead2ea91daf660990bf2311f376e38 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Fri, 18 Jul 2025 04:06:44 -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 | 14 ++++++-------- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/.cookiecutter.json b/.cookiecutter.json index a69b118..b862aeb 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -1,5 +1,5 @@ { - "_commit": "a98f2e32f30880d0d960acc164e39d8775487ac9", + "_commit": "cf9310790f4060a9056e7989067d3d846787f3b4", "_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 2ab48ef..687e635 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "commit": "a98f2e32f30880d0d960acc164e39d8775487ac9", + "commit": "cf9310790f4060a9056e7989067d3d846787f3b4", "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": "a98f2e32f30880d0d960acc164e39d8775487ac9" + "_commit": "cf9310790f4060a9056e7989067d3d846787f3b4" } }, "directory": null diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index b8f9a0b..471cabc 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -68,10 +68,10 @@ jobs: name: distribution-packages-${{ needs.get_tag.outputs.tag }} path: dist/ - - name: Publish to TestPyPI - env: - UV_PUBLISH_TOKEN: ${{ secrets.TESTPYPI_API_TOKEN }} - run: uvx nox -s publish-python -- --index testpypi + - name: Publish package distributions to TestPyPI + uses: pypa/gh-action-pypi-publish@release/v1 + with: + repository-url: https://test.pypi.org/legacy/ publish_pypi_and_github: name: Publish to Production PyPI and GitHub @@ -101,10 +101,8 @@ jobs: git tag ${{ needs.build_and_testpypi.outputs.tag }} git push origin ${{ needs.build_and_testpypi.outputs.tag }} - - name: Publish to PyPI - env: - UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }} - run: uvx nox -s publish-python + - name: Publish package distributions to TestPyPI + uses: pypa/gh-action-pypi-publish@release/v1 - name: Publish to GitHub env: From b5db6a955c7068ddc6af9b240f958daf800b5a31 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Fri, 18 Jul 2025 04:07:15 -0400 Subject: [PATCH 2/2] =?UTF-8?q?bump:=20version=200.7.0=20=E2=86=92=200.8.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 d2f323b..a12aee8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## v0.8.0 (2025-07-18) + ## v0.7.0 (2025-07-18) ## v0.6.0 (2025-07-18) diff --git a/pyproject.toml b/pyproject.toml index eee5251..f451123 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "robust-python-demo" -version = "0.7.0" +version = "0.8.0" description = "robust-python-demo" authors = [ { name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" },