Skip to content

Commit ff1ab0e

Browse files
committed
update version to 3.0
1 parent 9cda7cd commit ff1ab0e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/hamster/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# if defs is not there, we are running from sources
1919
from subprocess import getstatusoutput
2020
rc, output = getstatusoutput("git describe --tags --always --dirty=+")
21-
__version__ = "3.0-rc2" if rc else "{} (uninstalled)".format(output)
21+
__version__ = "3.0" if rc else "{} (uninstalled)".format(output)
2222
installed = False
2323
del getstatusoutput, rc, output
2424

wscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ from waflib import Utils
88

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

1313
APPNAME = 'hamster'
1414

0 commit comments

Comments
 (0)