diff --git a/HISTORY.rst b/HISTORY.rst index 83b683e..c6a5b99 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,12 @@ ======= History ======= + +1.0.1 (2019-04-16) +------------------ + +* Minor fixes on the return object (implement equality, + mark as unhashable) 1.0.0 (2019-03-25) ------------------ diff --git a/procrunner/__init__.py b/procrunner/__init__.py index 558c843..b6560de 100644 --- a/procrunner/__init__.py +++ b/procrunner/__init__.py @@ -53,7 +53,7 @@ __author__ = """Markus Gerstel""" __email__ = "scientificsoftware@diamond.ac.uk" -__version__ = "1.0.0" +__version__ = "1.0.1" logger = logging.getLogger("procrunner") logger.addHandler(logging.NullHandler()) diff --git a/setup.cfg b/setup.cfg index f0603b9..013a6c5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = True tag = True diff --git a/setup.py b/setup.py index 40b5d8d..420e675 100644 --- a/setup.py +++ b/setup.py @@ -56,6 +56,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/DiamondLightSource/python-procrunner", - version="1.0.0", + version="1.0.1", zip_safe=False, )