Skip to content

Commit 3fa42b3

Browse files
committed
chore: update demo to the latest cookiecutter-robust-python
1 parent e78d70f commit 3fa42b3

File tree

4 files changed

+7
-4
lines changed

4 files changed

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

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,6 @@ nohup.out
7171

7272
# Prettier dependencies
7373
node_modules/
74+
75+
# Release Notes
76+
body.md

scripts/setup-release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def setup_release(increment: Optional[str] = None) -> None:
5050

5151
commands: list[list[str]] = [
5252
["git", "add", "."],
53-
["git", "commit", "-m", f"bump: version {current_version}{new_version}"]
53+
["git", "commit", "-m", f"bump: version {current_version}{new_version}", "--no-verify"]
5454
]
5555

5656
for command in commands:

0 commit comments

Comments
 (0)