Skip to content

Commit f80069a

Browse files
committed
fix: replace --no-tag with --files-only since that actually exists
1 parent 90a9ec1 commit f80069a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def bump_version(new_version: str) -> None:
299299
Args:
300300
new_version: The version to bump to
301301
"""
302-
cmd: list[str] = ["uvx", "--from", "commitizen", "cz", "bump", "--changelog", "--yes", "--no-tag", new_version]
302+
cmd: list[str] = ["uvx", "--from", "commitizen", "cz", "bump", "--changelog", "--yes", "--files-only", new_version]
303303
# Exit code 1 means 'nothing to bump' - treat as success
304304
result: subprocess.CompletedProcess = subprocess.run(cmd, cwd=REPO_FOLDER)
305305
if result.returncode not in (0, 1):

0 commit comments

Comments
 (0)