Codebase list python-procrunner / v2.0.0
Bump version: 1.1.0 → 2.0.0 Markus Gerstel 3 years ago
4 changed file(s) with 6 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
11 History
22 =======
33
4 2.0.0
5 -----
4 2.0.0 (2020-06-24)
5 ------------------
66
77 * Python 3.5+ only, support for Python 2.7 has been dropped
88 * Deprecated function alias run_process() has been removed
9
9 * Fixed a stability issue on Windows
1010
1111 1.1.0 (2019-11-04)
1212 ------------------
4747
4848 __author__ = """Markus Gerstel"""
4949 __email__ = "scientificsoftware@diamond.ac.uk"
50 __version__ = "1.1.0"
50 __version__ = "2.0.0"
5151
5252 logger = logging.getLogger("procrunner")
5353 logger.addHandler(logging.NullHandler())
00 [bumpversion]
1 current_version = 1.1.0
1 current_version = 2.0.0
22 commit = True
33 tag = True
44
4444 test_suite="tests",
4545 tests_require=test_requirements,
4646 url="https://github.com/DiamondLightSource/python-procrunner",
47 version="1.1.0",
47 version="2.0.0",
4848 zip_safe=False,
4949 )