Codebase list python-procrunner / cb35e07
Bump version: 0.7.2 → 0.8.0 Markus Gerstel 4 years ago
4 changed file(s) with 9 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
00 =======
11 History
22 =======
3
4 0.8.0 (2018-10-09)
5 ------------------
6
7 * Add parameter working_directory to set the working directory
8 of the subprocess
39
410 0.7.2 (2018-10-05)
511 ------------------
5252
5353 __author__ = """Markus Gerstel"""
5454 __email__ = 'scientificsoftware@diamond.ac.uk'
55 __version__ = '0.7.2'
55 __version__ = '0.8.0'
5656
5757 logger = logging.getLogger('procrunner')
5858 logger.addHandler(logging.NullHandler())
00 [bumpversion]
1 current_version = 0.7.2
1 current_version = 0.8.0
22 commit = True
33 tag = True
44
5252 test_suite='tests',
5353 tests_require=test_requirements,
5454 url='https://github.com/DiamondLightSource/python-procrunner',
55 version='0.7.2',
55 version='0.8.0',
5656 zip_safe=False,
5757 )