Skip to content

Commit e6eed6e

Browse files
committed
Bump version: 2.2.0 → 2.3.0
1 parent 6e87ee6 commit e6eed6e

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.bumpversion.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.2.0
2+
current_version = 2.3.0
33
commit = True
44
tag = True
55

@@ -10,3 +10,4 @@ replace = version="{new_version}"
1010
[bumpversion:file:procrunner/__init__.py]
1111
search = __version__ = "{current_version}"
1212
replace = __version__ = "{new_version}"
13+

HISTORY.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
History
33
=======
44

5-
2.3.0 (????-??-??)
5+
2.3.0 (2020-10-29)
66
------------------
77
* Add Python 3.9 support, drop Python 3.5 support
88
* Fix a file descriptor leak on subprocess execution

procrunner/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
__author__ = """Markus Gerstel"""
5555
__email__ = "[email protected]"
56-
__version__ = "2.2.0"
56+
__version__ = "2.3.0"
5757

5858
logger = logging.getLogger("procrunner")
5959
logger.addHandler(logging.NullHandler())

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444
test_suite="tests",
4545
tests_require=test_requirements,
4646
url="https://github.com/DiamondLightSource/python-procrunner",
47-
version="2.2.0",
47+
version="2.3.0",
4848
zip_safe=False,
4949
)

0 commit comments

Comments
 (0)