Skip to content

Commit a373231

Browse files
committed
chore(changelog): append to CHANGELOG.md instead of overwriting
1 parent 1029fd5 commit a373231

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: utils/bump.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def get_base_version(version: str) -> str:
9898

9999

100100
def generate_changelog(version: str):
101-
cmd = ["git-cliff", "--tag", f"v{version}", "-o", "CHANGELOG.md"]
101+
cmd = ["git-cliff", "--tag", f"v{version}", "--append", "-o", "CHANGELOG.md"]
102102
try:
103103
result = subprocess.run(cmd, capture_output=True, text=True)
104104
if result.returncode != 0:

0 commit comments

Comments
 (0)