Skip to content

Commit

Permalink
Fix version to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
subhashb committed Jul 2, 2020
1 parent 6dd3f5f commit ffe5449
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 11 deletions.
8 changes: 0 additions & 8 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,5 @@ commit = True
tag = True

[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'

[bumpversion:file:docs/conf.py]
search = version = release = '{current_version}'
replace = version = release = '{new_version}'

[bumpversion:file:src/protean/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
year = "2019"
author = "Subhash Bhushan C"
copyright = "{0}, {1}".format(year, author)
version = release = "version = release = '0.5.1'"
version = release = "0.5.1"

pygments_style = "autumn"
templates_path = ["."]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def read(*names, **kwargs):

setup(
name="protean",
version="version='0.5.1'",
version="0.5.1",
license="BSD 3-Clause License",
description="Protean Application Framework",
long_description="%s\n%s"
Expand Down
2 changes: 1 addition & 1 deletion src/protean/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Primary Module to define version and expose packages"""

__version__ = "__version__ = '0.5.1'"
__version__ = "0.5.1"

# Local/Relative Imports
from .domain import Domain
Expand Down

0 comments on commit ffe5449

Please sign in to comment.