From b7cfdd02e7e83b79d58033dde5c5adce4ead4fb1 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Wed, 16 Jul 2025 22:12:13 -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 | 17 +++++++++-------- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/.cookiecutter.json b/.cookiecutter.json index eb8bcd7..bc34be9 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -1,5 +1,5 @@ { - "_commit": "4f973550456b326aa3547fee2ae81286659f51b0", + "_commit": "e43ac97858d8d40be0104a7a313ed12bcf9e1ab7", "_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 6f1267b..a779b81 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "commit": "4f973550456b326aa3547fee2ae81286659f51b0", + "commit": "e43ac97858d8d40be0104a7a313ed12bcf9e1ab7", "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": "4f973550456b326aa3547fee2ae81286659f51b0" + "_commit": "e43ac97858d8d40be0104a7a313ed12bcf9e1ab7" } }, "directory": null diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index 7f4060d..fe5cdf9 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -43,8 +43,6 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 - with: - ref: ${{ github.event_name == 'push' && github.ref || github.event.inputs.tag }} - name: Set up uv uses: astral-sh/setup-uv@v6 @@ -60,7 +58,7 @@ jobs: - name: Upload built package artifacts uses: actions/upload-artifact@v4 with: - name: distribution-packages + name: distribution-packages-${{ needs.get_tag.outputs.tag }} path: dist/ retention-days: 7 @@ -82,11 +80,8 @@ jobs: needs: build_and_testpypi steps: - - name: Download package artifacts - uses: actions/download-artifact@v4 - with: - name: distribution-packages - path: dist/ + - name: Checkout code + uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 @@ -96,6 +91,12 @@ jobs: - name: Set up uv uses: astral-sh/setup-uv@v6 + - name: Download package artifacts + uses: actions/download-artifact@v4 + with: + name: distribution-packages-${{ needs.build_and_testpypi.outputs.tag }} + path: dist/ + - name: Create Tag run: | git tag ${{ needs.build_and_testpypi.outputs.tag }} From 414e6136f6378a18671453336ba8e9775eb638d5 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Wed, 16 Jul 2025 22:12:22 -0400 Subject: [PATCH 2/2] =?UTF-8?q?bump:=20version=200.2.0=20=E2=86=92=200.3.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 bc709d5..a0d6939 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## v0.3.0 (2025-07-16) + ## v0.2.0 (2025-07-16) ## v0.1.0 (2025-07-16) diff --git a/pyproject.toml b/pyproject.toml index 4d9d381..00ab033 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "robust-python-demo" -version = "0.2.0" +version = "0.3.0" description = "robust-python-demo" authors = [ { name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" },