diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f1e09a21..87b7cded 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.3.0 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 60c0a960..28119101 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.2.0' +version = release = '0.3.0' pygments_style = 'autumn' templates_path = ['.'] diff --git a/setup.py b/setup.py index 8f984f0b..3629f546 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def read(*names, **kwargs): setup( name='protean', - version='0.2.0', + version='0.3.0', 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 a578208c..7c53ec16 100644 --- a/src/protean/__init__.py +++ b/src/protean/__init__.py @@ -1,6 +1,6 @@ """Primary Module to define version and expose packages""" -__version__ = '0.2.0' +__version__ = '0.3.0' # Local/Relative Imports from .domain import Domain