Skip to content

Commit 187f8d9

Browse files
committed
bump version to 3.0-beta
1 parent 1ca266d commit 187f8d9

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.2.2
2+
current_version = 3.0-beta
33
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?
44
serialize =
55
{major}.{minor}.{patch}
@@ -19,4 +19,3 @@ replace = Changes since {new_version}
1919

2020

2121
Changes in {new_version}
22-

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__ = "2.2.2" if rc else "{} (uninstalled)".format(output)
21+
__version__ = "3.0-beta" 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
@@ -3,7 +3,7 @@
33
# slight code duplication with hamster/__init__.py, but this is finally cleaner.
44
from subprocess import getstatusoutput
55
rc, output = getstatusoutput("git describe --tags --always --dirty=+")
6-
VERSION = "2.2.2" if rc else output
6+
VERSION = "3.0-beta" if rc else output
77

88
APPNAME = 'hamster'
99

0 commit comments

Comments
 (0)