From 3e8d49411395450ee07204e41f1aef8a7e0253f6 Mon Sep 17 00:00:00 2001 From: Subhash Bhushan Date: Tue, 10 Aug 2021 14:57:09 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.0=20=E2=86=92=200.6.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 0b1f9a44..fb3ce383 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.6.1 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 044385f8..68aefed6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,7 +28,7 @@ year = "2021" author = "Subhash Bhushan C" copyright = "{0}, {1}".format(year, author) -version = release = "0.6.0" +version = release = "0.6.1" pygments_style = "autumn" templates_path = ["."] diff --git a/setup.py b/setup.py index 13479a22..1d341aa1 100644 --- a/setup.py +++ b/setup.py @@ -83,7 +83,7 @@ def read(*names, **kwargs): setup( name="protean", - version="0.6.0", + version="0.6.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 9517063b..8de28fae 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.6.0" +__version__ = "0.6.1" from protean.utils import get_version