Skip to content
This repository was archived by the owner on Feb 4, 2026. It is now read-only.

Commit 2fe4c49

Browse files
committed
Bump version to 0.2.4-dev0
1 parent 4ce134b commit 2fe4c49

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.bumpversion.cfg

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[bumpversion]
2-
current_version = 0.2.3
2+
current_version = 0.2.4-dev0
33
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
4-
serialize =
5-
{major}.{minor}.{patch}-{release}{build}
6-
{major}.{minor}.{patch}
4+
serialize =
5+
{major}.{minor}.{patch}-{release}{build}
6+
{major}.{minor}.{patch}
77

88
[bumpversion:part:release]
99
optional_value = prod
1010
first_value = dev
11-
values =
12-
dev
13-
prod
11+
values =
12+
dev
13+
prod
1414

1515
[bumpversion:file:setup.py]
1616

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# The short X.Y version.
5656
version = '0.2'
5757
# The full version, including alpha/beta/rc tags.
58-
release = '0.2.3'
58+
release = '0.2.4-dev0'
5959

6060
# The language for content autogenerated by Sphinx. Refer to documentation
6161
# for a list of supported languages.

mocurly/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
from .errors import *
44
from .backend import *
55

6-
__version__ = '0.2.3'
6+
__version__ = '0.2.4-dev0'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
name='mocurly',
77
packages=find_packages(exclude=("tests", "tests.*")),
88
package_data={'mocurly': ['templates/*.xml']},
9-
version='0.2.3',
9+
version='0.2.4-dev0',
1010
description='A library that allows your python tests to easily mock out the recurly library',
1111
long_description=open('README.rst').read(),
1212
author='Yoriyasu Yano',
1313
author_email='yoriy@captricity.com',
1414
url='https://github.com/Captricity/mocurly',
15-
download_url='https://github.com/Captricity/mocurly/tarball/v0.2.3',
15+
download_url='https://github.com/Captricity/mocurly/tarball/v0.2.4-dev0',
1616
keywords = ['testing'],
1717
install_requires=install_requires,
1818
test_suite='tests'

0 commit comments

Comments
 (0)