diff --git a/HISTORY.rst b/HISTORY.rst index 311012b..2cee455 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,11 @@ ======= History ======= + +1.1.0 (2019-11-04) +------------------ + +* Add Python 3.8 support, drop Python 3.4 support 1.0.2 (2019-05-20) ------------------ diff --git a/procrunner/__init__.py b/procrunner/__init__.py index edc5f70..1a1e306 100644 --- a/procrunner/__init__.py +++ b/procrunner/__init__.py @@ -52,7 +52,7 @@ __author__ = """Markus Gerstel""" __email__ = "scientificsoftware@diamond.ac.uk" -__version__ = "1.0.2" +__version__ = "1.1.0" logger = logging.getLogger("procrunner") logger.addHandler(logging.NullHandler()) diff --git a/setup.cfg b/setup.cfg index e3a7056..38ee3f7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.2 +current_version = 1.1.0 commit = True tag = True diff --git a/setup.py b/setup.py index ec54275..29a129a 100644 --- a/setup.py +++ b/setup.py @@ -54,6 +54,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/DiamondLightSource/python-procrunner", - version="1.0.2", + version="1.1.0", zip_safe=False, )