Skip to content

Commit 264bd7c

Browse files
authored
Merge pull request #44 from robust-python/release/0.29.0
Release/0.29.0
2 parents 44321d2 + d7bead5 commit 264bd7c

File tree

10 files changed

+48
-10
lines changed

10 files changed

+48
-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": "192f7bbb0b7533a90c4fd01209d1d7e387c141f2",
2+
"_commit": "c0dc52f406bfda76f69a2a9ed9694bf15d213d34",
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": "192f7bbb0b7533a90c4fd01209d1d7e387c141f2",
3+
"commit": "c0dc52f406bfda76f69a2a9ed9694bf15d213d34",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -20,7 +20,7 @@
2020
"license": "MIT",
2121
"development_status": "Development Status :: 1 - Planning",
2222
"_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python",
23-
"_commit": "192f7bbb0b7533a90c4fd01209d1d7e387c141f2"
23+
"_commit": "c0dc52f406bfda76f69a2a9ed9694bf15d213d34"
2424
}
2525
},
2626
"directory": null

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
## v0.29.0 (2025-11-02)
2+
3+
## v0.27.0 (2025-09-18)
4+
5+
## v0.26.0 (2025-09-18)
6+
7+
## v0.25.0 (2025-09-18)
8+
9+
## v0.24.0 (2025-08-01)
10+
11+
## v0.23.0 (2025-08-01)
12+
13+
## v0.22.0 (2025-07-29)
14+
15+
## v0.21.0 (2025-07-27)
16+
17+
## v0.20.0 (2025-07-27)
18+
19+
## v0.19.0 (2025-07-27)
20+
21+
## v0.18.0 (2025-07-27)
22+
23+
## v0.17.0 (2025-07-26)
24+
25+
## v0.16.0 (2025-07-26)
26+
27+
## v0.14.0 (2025-07-18)
28+
29+
## v0.13.0 (2025-07-18)
30+
31+
## v0.12.0 (2025-07-18)
32+
33+
## v0.11.0 (2025-07-18)
34+
35+
## v0.10.0 (2025-07-18)
36+
37+
## v0.9.0 (2025-07-18)
38+
139
## v0.28.0 (2025-11-01)
240

341
## v0.27.0 (2025-09-18)

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
6262
reported to the community leaders responsible for enforcement at
63-
[cookiecutter.robust.python@gmail.com](mailto:cookiecutter.robust.python@gmail.com).
63+
[56kyleoliver@gmail.com](mailto:56kyleoliver@gmail.com).
6464
All complaints will be reviewed and investigated promptly and fairly.
6565

6666
All community leaders are obligated to respect the privacy and security of the

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,4 @@ _This project was generated from the [cookiecutter-robust-python][cookiecutter-r
210210
[bandit-documentation]: https://bandit.readthedocs.io/
211211
[conventional-commits]: https://www.conventionalcommits.org/
212212
[pytest-documentation]: https://docs.pytest.org/
213-
[cookiecutter-robust-python]: https://github.com/robust-python/cookiecutter-robust-python
213+
[cookiecutter-robust-python]: https://github.com/56kyle/cookiecutter-robust-python

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,5 @@ Distributed under the terms of the **MIT** license. See [LICENSE](LICENSE) for d
9191
9292
<!-- Reference Links -->
9393
94-
[cookiecutter-robust-python]: https://github.com/robust-python/cookiecutter-robust-python
94+
[cookiecutter-robust-python]: https://github.com/56kyle/cookiecutter-robust-python
9595
[documentation]: https://robust-python-demo.readthedocs.io/

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

scripts/setup-git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def get_parser() -> argparse.ArgumentParser:
3737
"""Creates the argument parser for setup-git."""
3838
parser: argparse.ArgumentParser = argparse.ArgumentParser(
3939
prog="setup-git",
40-
usage="python ./scripts/setup-git.py . -u robust-python -n robust-python-demo",
40+
usage="python ./scripts/setup-git.py . -u 56kyle -n robust-python-demo",
4141
description="Set up the provided cookiecutter-robust-python project's git repo.",
4242
)
4343
parser.add_argument(

scripts/setup-remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def get_parser() -> argparse.ArgumentParser:
3939
"""Creates the argument parser for setup-remote."""
4040
parser: argparse.ArgumentParser = argparse.ArgumentParser(
4141
prog="setup-remote",
42-
usage="python ./scripts/setup-remote.py . --host github.com --path robust-python/robust-python-demo",
42+
usage="python ./scripts/setup-remote.py . --host github.com --path 56kyle/robust-python-demo",
4343
description="Set up the provided cookiecutter-robust-python project's remote repo connection.",
4444
)
4545
parser.add_argument(

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)