diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f6a2b782..5ae26442 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.10 +current_version = 0.0.11 commit = True tag = True @@ -14,3 +14,4 @@ replace = version = release = '{new_version}' [bumpversion:file:src/protean/__init__.py] search = __version__ = '{current_version}' replace = __version__ = '{new_version}' + diff --git a/docs/conf.py b/docs/conf.py index f6a420d3..9bba6c01 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ year = '2019' author = 'Subhash Bhushan C' copyright = '{0}, {1}'.format(year, author) -version = release = '0.0.10' +version = release = '0.0.11' pygments_style = 'autumn' templates_path = ['.'] diff --git a/setup.py b/setup.py index c11c2cce..6f2fa26d 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def read(*names, **kwargs): setup( name='protean', - version='0.0.10', + version='0.0.11', license='BSD 3-Clause License', description='Protean Application Framework', long_description='%s\n%s' % ( diff --git a/src/protean/__init__.py b/src/protean/__init__.py index 485209cd..91634709 100644 --- a/src/protean/__init__.py +++ b/src/protean/__init__.py @@ -1,3 +1,3 @@ """Primary Module to define version and expose packages""" -__version__ = '0.0.10' +__version__ = '0.0.11'