Skip to content

Commit d002c23

Browse files
authored
Merge pull request #24 from 56kyle/release/0.19.0
release/0.19.0
2 parents 061ac73 + 5d214a2 commit d002c23

File tree

8 files changed

+16
-10
lines changed

8 files changed

+16
-10
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": "06be6f79fa1ca1038b43c1c382487a1075cda541",
2+
"_commit": "85a88c92c5628c13932721a53f87c1c0c2425663",
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": "06be6f79fa1ca1038b43c1c382487a1075cda541",
3+
"commit": "85a88c92c5628c13932721a53f87c1c0c2425663",
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": "06be6f79fa1ca1038b43c1c382487a1075cda541"
21+
"_commit": "85a88c92c5628c13932721a53f87c1c0c2425663"
2222
}
2323
},
2424
"directory": null

.readthedocs.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@ build:
77

88
python:
99
install:
10-
# This is required for ReadTheDocs to consider it a Python project and install dependencies.
11-
- method: pip
12-
path: .
13-
extra_requirements:
14-
- docs
10+
- requirements: docs/requirements.txt
1511

1612
sphinx:
1713
configuration: docs/conf.py

CHANGELOG.md

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

35
## v0.17.0 (2025-07-26)

docs/requirements.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
furo==2024.8.6
2+
myst-parser==4.0.1
3+
sphinx==8.2.3
4+
sphinx-autodoc-typehints==3.2.0
5+
sphinx-copybutton==0.5.2
6+
sphinx-tabs==3.4.7
7+
sphinxcontrib-typer==0.5.1

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.18.0"
3+
version = "0.19.0"
44
description = "robust-python-demo"
55
authors = [
66
{ name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" },

scripts/setup-release.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def setup_release(increment: Optional[str] = None) -> None:
4949
bump_version(increment=increment)
5050

5151
commands: list[list[str]] = [
52+
["uv", "sync", "--all-groups"],
5253
["git", "add", "."],
5354
["git", "commit", "-m", f"bump: version {current_version}{new_version}", "--no-verify"]
5455
]

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)