Skip to content

Commit b783eea

Browse files
committed
Bump version.
1 parent 53877f8 commit b783eea

File tree

8 files changed

+53
-26
lines changed

8 files changed

+53
-26
lines changed

HISTORY.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
History
22
=======
33

4+
1.5.4 (2026-03-21)
5+
------------------
6+
7+
Features
8+
~~~~~~~~
9+
* `#103 <https://github.com/aklajnert/pytest-subprocess/pull/103>`_: Improve matching commands that contain quoted arguments.
10+
11+
Bug fixes
12+
~~~~~~~~~
13+
* `#192 <https://github.com/aklajnert/pytest-subprocess/pull/192>`_: Fix ResourceWarning for unclosed file handles in test_universal_newlines and test_text by explicitly closing process.stdout after reading, preventing intermittent failures on Python 3.12+.
14+
* `#196 <https://github.com/aklajnert/pytest-subprocess/pull/196>`_: Handle stderr=STDOUT when stdout is a file handle.
15+
* `#194 <https://github.com/aklajnert/pytest-subprocess/pull/194>`_: Patch imported `subprocess.Popen` aliases.
16+
* `#186 <https://github.com/aklajnert/pytest-subprocess/pull/186>`_: Support file handles in stdout and stderr.
17+
18+
Other changes
19+
~~~~~~~~~~~~~
20+
* `#197 <https://github.com/aklajnert/pytest-subprocess/pull/197>`_: Officially support Python 3.14 and 3.15.
21+
422
1.5.3 (2025-01-04)
523
------------------
624

changelog.d/bug.0e27c3c5.entry.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

changelog.d/bug.2ba59c13.entry.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

changelog.d/bug.af83d745.entry.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

changelog.d/feature.98fc1e59.entry.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

changelog.d/other.468b0cf7.entry.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

changelog.d/releases/22.1.5.4.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
entries:
2+
bug:
3+
- message: Fix ResourceWarning for unclosed file handles in
4+
test_universal_newlines and test_text by explicitly closing process.stdout
5+
after reading, preventing intermittent failures on Python 3.12+.
6+
pr_ids:
7+
- '192'
8+
timestamp: 1773418994
9+
- message: Handle stderr=STDOUT when stdout is a file handle.
10+
pr_ids:
11+
- '196'
12+
timestamp: 1771774550
13+
- message: Patch imported `subprocess.Popen` aliases.
14+
pr_ids:
15+
- '194'
16+
timestamp: 1771750535
17+
- message: Support file handles in stdout and stderr.
18+
pr_ids:
19+
- '186'
20+
timestamp: 1756146621
21+
feature:
22+
- message: Improve matching commands that contain quoted arguments.
23+
pr_ids:
24+
- 103
25+
timestamp: 1666456344
26+
other:
27+
- message: Officially support Python 3.14 and 3.15.
28+
pr_ids:
29+
- '197'
30+
timestamp: 1773040237
31+
previous_release: 1.5.3
32+
release_date: '2026-03-21'
33+
release_description: ''
34+
release_version: 1.5.4

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def read(fname):
1616

1717
setup(
1818
name="pytest-subprocess",
19-
version="1.5.3",
19+
version="1.5.4",
2020
author="Andrzej Klajnert",
2121
author_email="python@aklajnert.pl",
2222
maintainer="Andrzej Klajnert",

0 commit comments

Comments
 (0)