diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c79d18b..d38c1bc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.9 +current_version = 0.0.11 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 1e3ab82..0cb186d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ year = '2018' author = 'Subhash Bhushan C' copyright = '{0}, {1}'.format(year, author) -version = release = '0.0.9' +version = release = '0.0.11' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index 13bfa74..ca21eca 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def read(*names, **kwargs): setup( name='protean-flask', - version='0.0.9', + version='0.0.11', license='BSD 3-Clause License', description='Protean Flask Extension', long_description='%s\n%s' % ( diff --git a/src/protean_flask/__init__.py b/src/protean_flask/__init__.py index 7b48910..95b54c8 100644 --- a/src/protean_flask/__init__.py +++ b/src/protean_flask/__init__.py @@ -3,7 +3,7 @@ from . import config from .core.base import Protean -__version__ = '0.0.9' +__version__ = '0.0.11' __all__ = ('Protean',)