diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cdf6bc22..8ea6566e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.7 +current_version = 0.5.8 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index b175238a..8a9b7285 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.7" +version = release = "0.5.8" pygments_style = "autumn" templates_path = ["."] diff --git a/setup.py b/setup.py index e47eff99..9de82019 100644 --- a/setup.py +++ b/setup.py @@ -83,7 +83,7 @@ def read(*names, **kwargs): setup( name="protean", - version="0.5.7", + version="0.5.8", 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 12da7b0b..0cf975f6 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.7" +__version__ = "0.5.8" # Local/Relative Imports from .domain import Domain