Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cookiecutter.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"_commit": "e75916b0cb7d49cc8b12acaf0af9098ec3ccca28",
"_commit": "4f973550456b326aa3547fee2ae81286659f51b0",
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
"add_rust_extension": false,
"author": "Kyle Oliver",
Expand Down
4 changes: 2 additions & 2 deletions .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
"commit": "e75916b0cb7d49cc8b12acaf0af9098ec3ccca28",
"commit": "4f973550456b326aa3547fee2ae81286659f51b0",
"checkout": null,
"context": {
"cookiecutter": {
Expand All @@ -18,7 +18,7 @@
"license": "MIT",
"development_status": "Development Status :: 1 - Planning",
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
"_commit": "e75916b0cb7d49cc8b12acaf0af9098ec3ccca28"
"_commit": "4f973550456b326aa3547fee2ae81286659f51b0"
}
},
"directory": null
Expand Down
60 changes: 0 additions & 60 deletions .github/workflows/build-python.yml

This file was deleted.

3 changes: 3 additions & 0 deletions .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ jobs:
with:
python-version-file: ".github/workflows/.python-version"

- name: Run package build
run: uvx nox -s build-python

- name: Upload built package artifacts
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## v0.2.0 (2025-07-16)

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

### Feat
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def setup_release(session: Session) -> None:
"""
session.log("Setting up release...")

session.run("python", SCRIPTS_FOLDER / "setup-release.py", external=True)
session.run("python", SCRIPTS_FOLDER / "setup-release.py", *session.posargs, external=True)


@nox.session(python=False, name="get-release-notes", tags=[RELEASE])
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "robust-python-demo"
version = "0.1.0"
version = "0.2.0"
description = "robust-python-demo"
authors = [
{ name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" },
Expand Down
Loading