Codebase list python-procrunner / f74bbb2
Bump version: 0.8.0 → 0.8.1 Markus Gerstel 5 years ago
4 changed file(s) with 12 addition(s) and 7 deletion(s). Raw diff Collapse all Expand all
00 =======
11 History
22 =======
3
4 0.8.1 (2018-12-04)
5 ------------------
6
7 * Fix a few deprecation warnings
38
49 0.8.0 (2018-10-09)
510 ------------------
5252
5353 __author__ = """Markus Gerstel"""
5454 __email__ = "scientificsoftware@diamond.ac.uk"
55 __version__ = "0.8.0"
55 __version__ = "0.8.1"
5656
5757 logger = logging.getLogger("procrunner")
5858 logger.addHandler(logging.NullHandler())
00 [bumpversion]
1 current_version = 0.8.0
1 current_version = 0.8.1
22 commit = True
33 tag = True
44
55 [bumpversion:file:setup.py]
6 search = version='{current_version}'
7 replace = version='{new_version}'
6 search = version="{current_version}"
7 replace = version="{new_version}"
88
99 [bumpversion:file:procrunner/__init__.py]
10 search = __version__ = '{current_version}'
11 replace = __version__ = '{new_version}'
10 search = __version__ = "{current_version}"
11 replace = __version__ = "{new_version}"
1212
1313 [bdist_wheel]
1414 universal = 1
5555 test_suite="tests",
5656 tests_require=test_requirements,
5757 url="https://github.com/DiamondLightSource/python-procrunner",
58 version="0.8.0",
58 version="0.8.1",
5959 zip_safe=False,
6060 )