Skip to content

Commit

Permalink
update version to 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ederag committed Feb 24, 2020
1 parent 9cda7cd commit ff1ab0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hamster/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# if defs is not there, we are running from sources
from subprocess import getstatusoutput
rc, output = getstatusoutput("git describe --tags --always --dirty=+")
__version__ = "3.0-rc2" if rc else "{} (uninstalled)".format(output)
__version__ = "3.0" if rc else "{} (uninstalled)".format(output)
installed = False
del getstatusoutput, rc, output

Expand Down
2 changes: 1 addition & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ from waflib import Utils

# slight code duplication with hamster/__init__.py, but this is finally cleaner.
rc, output = getstatusoutput("git describe --tags --always --dirty=+")
VERSION = "3.0-rc2" if rc else output
VERSION = "3.0" if rc else output

APPNAME = 'hamster'

Expand Down

0 comments on commit ff1ab0e

Please sign in to comment.