From f59eef2623c0409b475ba1c22049a39407230c31 Mon Sep 17 00:00:00 2001 From: Subhash Bhushan Date: Mon, 28 Sep 2020 15:01:20 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.5.4=20=E2=86=92=200.5.5?= 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 7aab660a..66701ff2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.4 +current_version = 0.5.5 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 397174b5..78170719 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,7 +28,7 @@ year = "2020" author = "Subhash Bhushan C" copyright = "{0}, {1}".format(year, author) -version = release = "0.5.4" +version = release = "0.5.5" pygments_style = "autumn" templates_path = ["."] diff --git a/setup.py b/setup.py index f84bf2c5..c09d2814 100644 --- a/setup.py +++ b/setup.py @@ -83,7 +83,7 @@ def read(*names, **kwargs): setup( name="protean", - version="0.5.4", + version="0.5.5", 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 5108bc30..b783fd81 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.5.4" +__version__ = "0.5.5" # Local/Relative Imports from .domain import Domain