Skip to content

Commit

Permalink
(fix): regex for release notes on docs build
Browse files Browse the repository at this point in the history
  • Loading branch information
ilan-gold committed Sep 4, 2024
1 parent f448eb2 commit d5d052b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/extensions/release_notes.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from sphinx.application import Sphinx


FULL_VERSION_RE = re.compile(r"^(\d+)\.(\d+)\.(\d+)(?:\.dev.*)?$")
FULL_VERSION_RE = re.compile(r"^(\d+)\.(\d+)\.(\d+)(?:(\.dev.*)|(rc.*))?$")


class ReleaseNotes(SphinxDirective):
Expand Down

0 comments on commit d5d052b

Please sign in to comment.