Skip to content

Commit 74102f8

Browse files
authored
Merge pull request #7 from 56kyle/release/0.3.0
Release/0.3.0
2 parents 3462b21 + 414e613 commit 74102f8

File tree

5 files changed

+15
-12
lines changed

5 files changed

+15
-12
lines changed

.cookiecutter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"_commit": "4f973550456b326aa3547fee2ae81286659f51b0",
2+
"_commit": "e43ac97858d8d40be0104a7a313ed12bcf9e1ab7",
33
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
44
"add_rust_extension": false,
55
"author": "Kyle Oliver",

.cruft.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
3-
"commit": "4f973550456b326aa3547fee2ae81286659f51b0",
3+
"commit": "e43ac97858d8d40be0104a7a313ed12bcf9e1ab7",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -18,7 +18,7 @@
1818
"license": "MIT",
1919
"development_status": "Development Status :: 1 - Planning",
2020
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
21-
"_commit": "4f973550456b326aa3547fee2ae81286659f51b0"
21+
"_commit": "e43ac97858d8d40be0104a7a313ed12bcf9e1ab7"
2222
}
2323
},
2424
"directory": null

.github/workflows/release-python.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ jobs:
4343
steps:
4444
- name: Checkout code
4545
uses: actions/checkout@v4
46-
with:
47-
ref: ${{ github.event_name == 'push' && github.ref || github.event.inputs.tag }}
4846

4947
- name: Set up uv
5048
uses: astral-sh/setup-uv@v6
@@ -60,7 +58,7 @@ jobs:
6058
- name: Upload built package artifacts
6159
uses: actions/upload-artifact@v4
6260
with:
63-
name: distribution-packages
61+
name: distribution-packages-${{ needs.get_tag.outputs.tag }}
6462
path: dist/
6563
retention-days: 7
6664

@@ -82,11 +80,8 @@ jobs:
8280
needs: build_and_testpypi
8381

8482
steps:
85-
- name: Download package artifacts
86-
uses: actions/download-artifact@v4
87-
with:
88-
name: distribution-packages
89-
path: dist/
83+
- name: Checkout code
84+
uses: actions/checkout@v4
9085

9186
- name: Set up Python
9287
uses: actions/setup-python@v5
@@ -96,6 +91,12 @@ jobs:
9691
- name: Set up uv
9792
uses: astral-sh/setup-uv@v6
9893

94+
- name: Download package artifacts
95+
uses: actions/download-artifact@v4
96+
with:
97+
name: distribution-packages-${{ needs.build_and_testpypi.outputs.tag }}
98+
path: dist/
99+
99100
- name: Create Tag
100101
run: |
101102
git tag ${{ needs.build_and_testpypi.outputs.tag }}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## v0.3.0 (2025-07-16)
2+
13
## v0.2.0 (2025-07-16)
24

35
## v0.1.0 (2025-07-16)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "robust-python-demo"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "robust-python-demo"
55
authors = [
66
{ name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" },

0 commit comments

Comments
 (0)