From fa68d6bfc05d2a28b627776f7dab70fba7b1704c Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Sun, 27 Jul 2025 15:16:58 -0400 Subject: [PATCH 1/4] chore: update demo to the latest cookiecutter-robust-python --- uv.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uv.lock b/uv.lock index 26a8606..1b2c51e 100644 --- a/uv.lock +++ b/uv.lock @@ -1092,7 +1092,7 @@ wheels = [ [[package]] name = "robust-python-demo" -version = "0.0.0" +version = "0.18.0" source = { editable = "." } dependencies = [ { name = "loguru" }, From 550f7937b2b37744c1f4b9b126d9d3a0177809f6 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Sun, 27 Jul 2025 15:20:37 -0400 Subject: [PATCH 2/4] Revert "chore: update demo to the latest cookiecutter-robust-python" This reverts commit fa68d6bfc05d2a28b627776f7dab70fba7b1704c. --- uv.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uv.lock b/uv.lock index 1b2c51e..26a8606 100644 --- a/uv.lock +++ b/uv.lock @@ -1092,7 +1092,7 @@ wheels = [ [[package]] name = "robust-python-demo" -version = "0.18.0" +version = "0.0.0" source = { editable = "." } dependencies = [ { name = "loguru" }, From 9b04c5b5d6bf8ccce91f0651660303cf1e0d1464 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Sun, 27 Jul 2025 15:21:04 -0400 Subject: [PATCH 3/4] chore: update demo to the latest cookiecutter-robust-python --- .cookiecutter.json | 2 +- .cruft.json | 4 ++-- .readthedocs.yml | 6 +----- docs/requirements.txt | 7 +++++++ scripts/setup-release.py | 1 + 5 files changed, 12 insertions(+), 8 deletions(-) create mode 100644 docs/requirements.txt diff --git a/.cookiecutter.json b/.cookiecutter.json index a5b9109..96d15c7 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -1,5 +1,5 @@ { - "_commit": "06be6f79fa1ca1038b43c1c382487a1075cda541", + "_commit": "85a88c92c5628c13932721a53f87c1c0c2425663", "_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 3f0db74..dad43ae 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "commit": "06be6f79fa1ca1038b43c1c382487a1075cda541", + "commit": "85a88c92c5628c13932721a53f87c1c0c2425663", "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": "06be6f79fa1ca1038b43c1c382487a1075cda541" + "_commit": "85a88c92c5628c13932721a53f87c1c0c2425663" } }, "directory": null diff --git a/.readthedocs.yml b/.readthedocs.yml index 65417e1..0c25cdc 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -7,11 +7,7 @@ build: python: install: - # This is required for ReadTheDocs to consider it a Python project and install dependencies. - - method: pip - path: . - extra_requirements: - - docs + - requirements: docs/requirements.txt sphinx: configuration: docs/conf.py diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 0000000..10e983f --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1,7 @@ +furo==2024.8.6 +myst-parser==4.0.1 +sphinx==8.2.3 +sphinx-autodoc-typehints==3.2.0 +sphinx-copybutton==0.5.2 +sphinx-tabs==3.4.7 +sphinxcontrib-typer==0.5.1 diff --git a/scripts/setup-release.py b/scripts/setup-release.py index 30a5f1a..172a61e 100644 --- a/scripts/setup-release.py +++ b/scripts/setup-release.py @@ -49,6 +49,7 @@ def setup_release(increment: Optional[str] = None) -> None: bump_version(increment=increment) commands: list[list[str]] = [ + ["uv", "sync", "--all-groups"], ["git", "add", "."], ["git", "commit", "-m", f"bump: version {current_version} → {new_version}", "--no-verify"] ] From 5d214a2b461478ef946e1eed7c737b613bd50725 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Sun, 27 Jul 2025 15:21:34 -0400 Subject: [PATCH 4/4] =?UTF-8?q?bump:=20version=200.18.0=20=E2=86=92=200.19?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- uv.lock | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 831666a..42f3c62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## v0.19.0 (2025-07-27) + ## v0.18.0 (2025-07-27) ## v0.17.0 (2025-07-26) diff --git a/pyproject.toml b/pyproject.toml index 319580d..54abbfe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "robust-python-demo" -version = "0.18.0" +version = "0.19.0" description = "robust-python-demo" authors = [ { name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" }, diff --git a/uv.lock b/uv.lock index 26a8606..5a82143 100644 --- a/uv.lock +++ b/uv.lock @@ -1092,7 +1092,7 @@ wheels = [ [[package]] name = "robust-python-demo" -version = "0.0.0" +version = "0.19.0" source = { editable = "." } dependencies = [ { name = "loguru" },