Codebase list python-procrunner / 3f4864a
Bump version: 2.1.0 → 2.2.0 Markus Gerstel 3 years ago
4 changed file(s) with 5 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
11 History
22 =======
33
4 2.2.0
5 -----
4 2.2.0 (2020-09-07)
5 ------------------
66 * Calling the run() function with unnamed arguments (other than the command
77 list as the first argument) is now deprecated. As a number of arguments
88 will be removed in a future version the use of unnamed arguments will
5252
5353 __author__ = """Markus Gerstel"""
5454 __email__ = "scientificsoftware@diamond.ac.uk"
55 __version__ = "2.1.0"
55 __version__ = "2.2.0"
5656
5757 logger = logging.getLogger("procrunner")
5858 logger.addHandler(logging.NullHandler())
00 [bumpversion]
1 current_version = 2.1.0
1 current_version = 2.2.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="2.1.0",
47 version="2.2.0",
4848 zip_safe=False,
4949 )