Skip to content

Commit

Permalink
prepping 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
o-smirnov committed Nov 17, 2020
1 parent f8b2ce5 commit 0f8cf7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions radiopadre_client/default_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
import re

# change this to a proper patch release number for a real release
__version__ = "1.1.x"
__version__ = "1.1.1"

# if True, this is a stable release e.g. 1.1.0. If False, this is an dev version e.g. 1.1.x
__release__ = re.match("^(\d+)\.(\d+)\.(d+)$", __version__)
__release__ = re.match("^(\d+)\.(\d+)\.(\d+)$", __version__)

# git tag or branch to use: vXXX for releases and bXXX for devs
__tag_prefix__ = "v" if __release__ else "b"
__tag_prefix__ = "b" # "v" if __release__ else "b"

# release x.y.z pulls x.y.latest image
if __release__:
Expand Down

0 comments on commit 0f8cf7b

Please sign in to comment.