This repository was archived by the owner on Feb 4, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed
Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.2.3
2+ current_version = 0.2.4-dev0
33parse = (?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]
99optional_value = prod
1010first_value = dev
11- values =
12- dev
13- prod
11+ values =
12+ dev
13+ prod
1414
1515[bumpversion:file:setup.py]
1616
Original file line number Diff line number Diff line change 5555# The short X.Y version.
5656version = '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.
Original file line number Diff line number Diff line change 33from .errors import *
44from .backend import *
55
6- __version__ = '0.2.3 '
6+ __version__ = '0.2.4-dev0 '
Original file line number Diff line number Diff line change 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'
You can’t perform that action at this time.
0 commit comments