Skip to content

Commit ecd8e1a

Browse files
akbakb
authored andcommitted
Fix bump version
1 parent 6c96b3c commit ecd8e1a

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

.bumpversion.cfg

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,13 @@ commit = True
44
tag = True
55

66
[bumpversion:file:setup.py]
7-
search = version={current_version}
8-
replace = version={new_version}
9-
10-
[bumpversion:file:README.rst]
11-
search = v{current_version}.
12-
replace = v{new_version}.
7+
search = version="{current_version}"
8+
replace = version="{new_version}"
139

1410
[bumpversion:file:docs/conf.py]
15-
search = version = release = {current_version}
16-
replace = version = release = {new_version}
11+
search = version = release = "{current_version}"
12+
replace = version = release = "{new_version}"
1713

18-
[bumpversion:file:src/mario_addons/__init__.py]
19-
search = __version__ = {current_version}
20-
replace = __version__ = {new_version}
14+
[bumpversion:file:src/mario/__init__.py]
15+
search = __version__ = "{current_version}"
16+
replace = __version__ = "{new_version}"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def read(*names, **kwargs):
3333
# Enable code coverage for C code: we can't use CFLAGS=-coverage in tox.ini, since that may mess with compiling
3434
setup(
3535
name="mario-addons",
36-
version="version=0.1.1",
36+
version="0.1.1",
3737
description="More commands for Mario.",
3838
long_description="%s\n%s"
3939
% (

0 commit comments

Comments
 (0)