Skip to content

Commit d9d67cf

Browse files
committed
Merge tag 'v2.3.2'
Bump version: 2.3.1 → 2.3.2
2 parents 6ca16b7 + 8cdd12f commit d9d67cf

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.bumpversion.cfg

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

HISTORY.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
=======
21
History
3-
=======
2+
==================
43

54
3.0.0 (2022-01-??)
65
------------------
@@ -16,6 +15,9 @@ History
1615
(previously deprecated in `#62 <https://github.com/DiamondLightSource/python-procrunner/pull/62>`_)
1716
* The run() function no longer accepts a 'debug' argument
1817
(previously deprecated in `#63 <https://github.com/DiamondLightSource/python-procrunner/pull/63>`_)
18+
19+
2.3.2 (2022-01-28)
20+
------------------
1921
* The run() function now understands stdin=subprocess.DEVNULL to close the subprocess stdin,
2022
rather than to connect through the existing stdin, which is the current default
2123

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = procrunner
33
description = Versatile utility function to run external processes
4-
version = 2.3.1
4+
version = 2.3.2
55
author = Diamond Light Source - Scientific Software et al.
66
author_email = [email protected]
77
classifiers =

src/procrunner/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
# stderr=b'/bin/ls: cannot access /some/path/containing spaces: No such file or directory\n'
4747
# )
4848

49-
__version__ = "2.3.1"
49+
__version__ = "2.3.2"
5050

5151
logger = logging.getLogger("procrunner")
5252
logger.addHandler(logging.NullHandler())

0 commit comments

Comments
 (0)