Skip to content

Commit

Permalink
add rc0 version suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
espenhgn committed Oct 24, 2022
1 parent d446e43 commit 3b5684d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion version/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
_PATCH = "0"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = ""
_SUFFIX = "rc0"

VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR)
VERSION = "{0}.{1}.{2}{3}".format(_MAJOR, _MINOR, _PATCH, _SUFFIX)

0 comments on commit 3b5684d

Please sign in to comment.