Skip to content

Commit 6fa4c20

Browse files
committed
update version to 3.0.1
1 parent b4010f6 commit 6fa4c20

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.0-beta
2+
current_version = 3.0.1
33
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?
44
serialize =
55
{major}.{minor}.{patch}

NEWS

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
Changes since 2.2.2
1+
Changes in 3.0.1
2+
3+
* Fixed a rare crash in hamster-window-server (Issue 571).
4+
5+
6+
Changes in 3.0
27

38
* Fixed dialogs placement (PR 549):
49
- dialogs appear above their parent (the overview, if opened).

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" if rc else "{} (uninstalled)".format(output)
21+
__version__ = "3.0.1" 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" if rc else output
11+
VERSION = "3.0.1" if rc else output
1212

1313
APPNAME = 'hamster'
1414

0 commit comments

Comments
 (0)