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/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/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/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/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"] ] 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" },