Add "rc" to pre-release version types in bump_changelog.py
diff --git a/script/bump_changelog.py b/script/bump_changelog.py
index a08a1ae..7bdcd5c 100644
--- a/script/bump_changelog.py
+++ b/script/bump_changelog.py
@@ -34,7 +34,7 @@
     if args.verbose:
         logging.basicConfig(level=logging.DEBUG)
     logging.debug(f"Launching bump_changelog with args: {args}")
-    if any(s in args.version for s in ("dev", "a", "b")):
+    if any(s in args.version for s in ("dev", "a", "b", "rc")):
         return
     with open(DEFAULT_CHANGELOG_PATH, encoding="utf-8") as f:
         content = f.read()