diff --git a/HISTORY.rst b/HISTORY.rst index 22a4537..ab604eb 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,7 +3,7 @@ History ======= -0.1.1 (2021-06-25) +0.1.2 (2021-06-25) ------------------ * First release on PyPI. diff --git a/setup.cfg b/setup.cfg index c4635ab..b1af741 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.1.2 commit = True tag = True diff --git a/setup.py b/setup.py index ca77272..03f380b 100644 --- a/setup.py +++ b/setup.py @@ -50,6 +50,6 @@ def parse_requirements(filename): test_suite='tests', tests_require=test_requirements, url='https://github.com/javipalanca/spade_pubsub', - version='version="0.1.1"', + version="0.1.2", zip_safe=False, ) diff --git a/spade_pubsub/__init__.py b/spade_pubsub/__init__.py index 15aa867..ad6ae8e 100644 --- a/spade_pubsub/__init__.py +++ b/spade_pubsub/__init__.py @@ -2,7 +2,7 @@ __author__ = """Javi Palanca""" __email__ = "jpalanca@dsic.upv.es" -__version__ = "0.1.1" +__version__ = "0.1.2" from .pubsub import PubSubMixin