File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 3.0.1
2+ current_version = 3.0.2
33parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?
44serialize =
55 {major}.{minor}.{patch}
Original file line number Diff line number Diff line change 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.1 " if rc else "{} (uninstalled)" .format (output )
21+ __version__ = "3.0.2 " if rc else "{} (uninstalled)" .format (output )
2222 installed = False
2323 del getstatusoutput , rc , output
2424
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ from waflib import Utils
88
99# slight code duplication with hamster/__init__.py, but this is finally cleaner.
1010rc , output = getstatusoutput ("git describe --tags --always --dirty=+" )
11- VERSION = "3.0.1 " if rc else output
11+ VERSION = "3.0.2 " if rc else output
1212
1313APPNAME = 'hamster'
1414
You can’t perform that action at this time.
0 commit comments