summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
Diffstat (limited to 'script')
-rw-r--r--script/bump_changelog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/bump_changelog.py b/script/bump_changelog.py
index bfd73792..a08a1aef 100644
--- a/script/bump_changelog.py
+++ b/script/bump_changelog.py
@@ -34,7 +34,7 @@ def main() -> None:
if args.verbose:
logging.basicConfig(level=logging.DEBUG)
logging.debug(f"Launching bump_changelog with args: {args}")
- if "dev" in args.version:
+ if any(s in args.version for s in ("dev", "a", "b")):
return
with open(DEFAULT_CHANGELOG_PATH, encoding="utf-8") as f:
content = f.read()