Skip to content

Commit bd533a7

Browse files
author
Patrick Lauber
committed
bumped version number to 2.0.1
1 parent 2d81e3f commit bd533a7

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

cms/__init__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
VERSION = (2, 0, 0, 'final')
2-
__version__ = '.'.join(map(str, VERSION))
1+
VERSION = (2, 0, 1, 'final')
2+
if VERSION[-1] != "final":
3+
__version__ = '.'.join(map(str, VERSION))
4+
else:
5+
__version__ = '.'.join(map(str, VERSION[:-1]))
36

47
# patch settings
58
try:

0 commit comments

Comments
 (0)