Skip to content

Commit ebaf40d

Browse files
committed
chore: update demo to the latest cookiecutter-robust-python
1 parent 59a1de9 commit ebaf40d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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": "910ef114f9677264f7359f8cf24d8f50f69626dd",
2+
"_commit": "4c9c5cede6ae82e1ccd704a2b34d8d90c5c82b60",
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": "910ef114f9677264f7359f8cf24d8f50f69626dd",
3+
"commit": "4c9c5cede6ae82e1ccd704a2b34d8d90c5c82b60",
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": "910ef114f9677264f7359f8cf24d8f50f69626dd"
21+
"_commit": "4c9c5cede6ae82e1ccd704a2b34d8d90c5c82b60"
2222
}
2323
},
2424
"directory": null

scripts/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def get_latest_release_notes() -> str:
119119
raise ValueError(
120120
"The latest tag and version are the same. Please ensure the release notes are taken before tagging."
121121
)
122-
rev_range: str = latest_version if latest_tag is None else f"{latest_tag}..{latest_version}"
122+
rev_range: str = "" if latest_tag is None else f"{latest_tag}..{latest_version}"
123123

124124
result: subprocess.CompletedProcess = subprocess.run(
125125
["uvx", "--from", "commitizen", "cz", "changelog", rev_range, "--dry-run"],

0 commit comments

Comments
 (0)