From 4c7e69a47c13fe0bea3f390968d186c626d7cf18 Mon Sep 17 00:00:00 2001 From: Subhash Bhushan Date: Tue, 15 Oct 2019 11:21:41 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.0=20=E2=86=92=200.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/conf.py | 2 +- setup.py | 2 +- src/protean/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 87b7cded..2739adc1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0 +current_version = 0.3.1 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 28119101..e00031cf 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.3.0' +version = release = '0.3.1' pygments_style = 'autumn' templates_path = ['.'] diff --git a/setup.py b/setup.py index 3629f546..fdd5ac26 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def read(*names, **kwargs): setup( name='protean', - version='0.3.0', + version='0.3.1', 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 7c53ec16..24df011b 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.3.0' +__version__ = '0.3.1' # Local/Relative Imports from .domain import Domain