Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
aurzenligl committed Jun 5, 2019
1 parent 3ac78ee commit a42a615
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.2
current_version = 1.2.3

[bumpversion:file:setup.py]

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '1.2.2'
version = '1.2.3'
# The full version, including alpha/beta/rc tags.
release = '1.2.2'
release = '1.2.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion prophy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@
'with_metaclass',
]

__version__ = '1.2.2'
__version__ = '1.2.3'
2 changes: 1 addition & 1 deletion prophy/tests/test_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
def test_version_number():
import prophy
assert prophy.__version__ == '1.2.2'
assert prophy.__version__ == '1.2.3'
2 changes: 1 addition & 1 deletion prophy_cpp/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ from waflib.Task import Task
from waflib.Tools import waf_unit_test

APPNAME = 'prophy-cpp'
VERSION = '1.2.2'
VERSION = '1.2.3'

def options(ctx):
ctx.load('compiler_cxx python waf_unit_test')
Expand Down
2 changes: 1 addition & 1 deletion prophyc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from .file_processor import FileProcessor
from .generators.base import GenerateError

__version__ = '1.2.2'
__version__ = '1.2.3'


class ProphycError(Exception):
Expand Down
2 changes: 1 addition & 1 deletion prophyc/tests/test_prophyc.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

def test_showing_version(call_prophyc):
ret, out, err = call_prophyc(["--version"])
expected_version = '1.2.2'
expected_version = '1.2.3'
assert ret == 0
assert out == 'prophyc %s\n' % expected_version
assert err == ""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='prophy',
version='1.2.2',
version='1.2.3',
author='Krzysztof Laskowski',
author_email='aurzenligl@gmail.com',
maintainer='Krzysztof Laskowski',
Expand Down

0 comments on commit a42a615

Please sign in to comment.