Bump version: 1.1.0 → 2.0.0
Markus Gerstel
2 years ago
1 | 1 |
History
|
2 | 2 |
=======
|
3 | 3 |
|
4 | |
2.0.0
|
5 | |
-----
|
|
4 |
2.0.0 (2020-06-24)
|
|
5 |
------------------
|
6 | 6 |
|
7 | 7 |
* Python 3.5+ only, support for Python 2.7 has been dropped
|
8 | 8 |
* Deprecated function alias run_process() has been removed
|
9 | |
|
|
9 |
* Fixed a stability issue on Windows
|
10 | 10 |
|
11 | 11 |
1.1.0 (2019-11-04)
|
12 | 12 |
------------------
|
47 | 47 |
|
48 | 48 |
__author__ = """Markus Gerstel"""
|
49 | 49 |
__email__ = "scientificsoftware@diamond.ac.uk"
|
50 | |
__version__ = "1.1.0"
|
|
50 |
__version__ = "2.0.0"
|
51 | 51 |
|
52 | 52 |
logger = logging.getLogger("procrunner")
|
53 | 53 |
logger.addHandler(logging.NullHandler())
|
0 | 0 |
[bumpversion]
|
1 | |
current_version = 1.1.0
|
|
1 |
current_version = 2.0.0
|
2 | 2 |
commit = True
|
3 | 3 |
tag = True
|
4 | 4 |
|
44 | 44 |
test_suite="tests",
|
45 | 45 |
tests_require=test_requirements,
|
46 | 46 |
url="https://github.com/DiamondLightSource/python-procrunner",
|
47 | |
version="1.1.0",
|
|
47 |
version="2.0.0",
|
48 | 48 |
zip_safe=False,
|
49 | 49 |
)
|