Codebase list python-procrunner / 9296d07
Bump version: 0.4.0 → 0.5.0 Markus Gerstel 5 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 0.5.0
5 -----
4 0.5.0 (2018-04-26)
5 ------------------
66
77 * New keyword 'win32resolve' which only takes effect on Windows and is enabled
88 by default. This causes procrunner to call the Win32 API FindExecutable()
5151
5252 __author__ = """Markus Gerstel"""
5353 __email__ = 'scientificsoftware@diamond.ac.uk'
54 __version__ = '0.4.0'
54 __version__ = '0.5.0'
5555
5656 logger = logging.getLogger('procrunner')
5757 logger.addHandler(logging.NullHandler())
00 [bumpversion]
1 current_version = 0.4.0
1 current_version = 0.5.0
22 commit = True
33 tag = True
44
4747 test_suite='tests',
4848 tests_require=test_requirements,
4949 url='https://github.com/DiamondLightSource/python-procrunner',
50 version='0.4.0',
50 version='0.5.0',
5151 zip_safe=False,
5252 )