Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

Commit 0b387c7

Browse files
authored
Merge pull request #16 from Captricity/yori-versions
Versions
2 parents 95bb090 + 9f59ab8 commit 0b387c7

File tree

6 files changed

+21
-4
lines changed

6 files changed

+21
-4
lines changed

.bumpversion.cfg

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[bumpversion]
2+
current_version = 0.2.3
3+
parse = (?P<major>\d+)\.(?P<minor>.*)\.(?P<patch>.*)
4+
serialize = {major}.{minor}.{patch}
5+
6+
[bumpversion:file:setup.py]
7+
8+
[bumpversion:file:mocurly/__init__.py]
9+
10+
[bumpversion:file:docs/source/conf.py]
11+

docs/source/change-log.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
Change log
55
==========
66

7+
0.2.3
8+
-----
9+
10+
- Add support for recurlypy versions up to 2.8.2
11+
712
0.2.2
813
-----
914

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.2'
58+
release = '0.2.3'
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.2'
6+
__version__ = '0.2.3'

requirements_dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
tox
22
sphinx
3+
bumpversion

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.2',
9+
version='0.2.3',
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.2',
15+
download_url='https://github.com/Captricity/mocurly/tarball/v0.2.3',
1616
keywords = ['testing'],
1717
install_requires=install_requires,
1818
test_suite='tests'

0 commit comments

Comments
 (0)