Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdeitke committed Aug 4, 2022
1 parent 10a2912 commit b8e76e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions prior/version.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
_MAJOR = "0"
_MAJOR = "1"
_MINOR = "0"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "1"
_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 = ".dev31"
_SUFFIX = ""

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

0 comments on commit b8e76e5

Please sign in to comment.