Skip to content

Commit 42f5952

Browse files
Add "rc" to pre-release version types in bump_changelog.py
1 parent 3593863 commit 42f5952

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/bump_changelog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def main() -> None:
3434
if args.verbose:
3535
logging.basicConfig(level=logging.DEBUG)
3636
logging.debug(f"Launching bump_changelog with args: {args}")
37-
if any(s in args.version for s in ("dev", "a", "b")):
37+
if any(s in args.version for s in ("dev", "a", "b", "rc")):
3838
return
3939
with open(DEFAULT_CHANGELOG_PATH, encoding="utf-8") as f:
4040
content = f.read()

0 commit comments

Comments
 (0)