Skip to content

Commit e1a8ec9

Browse files
committed
Bump version: 0.4.4.rc0 → 0.4.4
1 parent 6e85933 commit e1a8ec9

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.bumpversion.cfg

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
[bumpversion]
2-
current_version = 0.4.4.rc0
3-
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\.(?P<release>[a-z]+)(?P<drop>\d+)
4-
serialize = {major}.{minor}.{patch}.{release}{drop}
2+
current_version = 0.4.4
3+
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<drop>\d+))?
4+
serialize =
5+
{major}.{minor}.{patch}.{release}{drop}
6+
{major}.{minor}.{patch}
57
commit = False
68
tag = False
7-
allow_dirty = True
9+
tag_name = "v{new_version}"
10+
allow_dirty = False
811

912
[bumpversion:file:data_migrator/__init__.py]
1013
parse = (?P<major>\d+),(?P<minor>\d+),(?P<patch>\d+),'(?P<release>[a-z]+)',(?P<drop>\d+)
@@ -19,6 +22,8 @@ replace = ## {new_version} -
1922
serialize = [{major}.{minor}.{patch}]
2023

2124
[bumpversion:part:release]
25+
first_value = alpha
26+
optional_value = final
2227
values =
2328
alpha
2429
rc

data_migrator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION = (0,4,4,'rc',0)
1+
VERSION = (0,4,4,'final',0)
22

33
PACKAGE_NAME = 'data_migrator'

0 commit comments

Comments
 (0)