Codebase list python-procrunner / e6eed6e
Bump version: 2.2.0 → 2.3.0 Markus Gerstel 3 years ago
4 changed file(s) with 5 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
00 [bumpversion]
1 current_version = 2.2.0
1 current_version = 2.3.0
22 commit = True
33 tag = True
44
99 [bumpversion:file:procrunner/__init__.py]
1010 search = __version__ = "{current_version}"
1111 replace = __version__ = "{new_version}"
12
11 History
22 =======
33
4 2.3.0 (????-??-??)
4 2.3.0 (2020-10-29)
55 ------------------
66 * Add Python 3.9 support, drop Python 3.5 support
77 * Fix a file descriptor leak on subprocess execution
5252
5353 __author__ = """Markus Gerstel"""
5454 __email__ = "scientificsoftware@diamond.ac.uk"
55 __version__ = "2.2.0"
55 __version__ = "2.3.0"
5656
5757 logger = logging.getLogger("procrunner")
5858 logger.addHandler(logging.NullHandler())
4343 test_suite="tests",
4444 tests_require=test_requirements,
4545 url="https://github.com/DiamondLightSource/python-procrunner",
46 version="2.2.0",
46 version="2.3.0",
4747 zip_safe=False,
4848 )