diff --git a/HISTORY.rst b/HISTORY.rst index 47b07f9..568b80f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,12 +2,12 @@ History ======= -2.0.0 ------ +2.0.0 (2020-06-24) +------------------ * Python 3.5+ only, support for Python 2.7 has been dropped * Deprecated function alias run_process() has been removed - +* Fixed a stability issue on Windows 1.1.0 (2019-11-04) ------------------ diff --git a/procrunner/__init__.py b/procrunner/__init__.py index de1d8b3..8940ea7 100644 --- a/procrunner/__init__.py +++ b/procrunner/__init__.py @@ -48,7 +48,7 @@ __author__ = """Markus Gerstel""" __email__ = "scientificsoftware@diamond.ac.uk" -__version__ = "1.1.0" +__version__ = "2.0.0" logger = logging.getLogger("procrunner") logger.addHandler(logging.NullHandler()) diff --git a/setup.cfg b/setup.cfg index 38ee3f7..d120e0d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.0 +current_version = 2.0.0 commit = True tag = True diff --git a/setup.py b/setup.py index 44e8ecd..da416a0 100644 --- a/setup.py +++ b/setup.py @@ -45,6 +45,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/DiamondLightSource/python-procrunner", - version="1.1.0", + version="2.0.0", zip_safe=False, )