Skip to content

Commit 7a9d9bb

Browse files
authored
Release version 1.4.0 (#72)
1 parent 9e28d87 commit 7a9d9bb

File tree

7 files changed

+43
-23
lines changed

7 files changed

+43
-23
lines changed

HISTORY.rst

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

4+
1.4.0 (2022-01-23)
5+
------------------
6+
7+
Features
8+
~~~~~~~~
9+
* `#71 <https://github.com/aklajnert/pytest-subprocess/pull/71>`_: Add support for stdin with asyncio.
10+
11+
Bug fixes
12+
~~~~~~~~~
13+
* `#68 <https://github.com/aklajnert/pytest-subprocess/pull/68>`_: Make `stdout` and `stderr` an `asyncio.StreamReader` instance when using asyncio functions.
14+
* `#63 <https://github.com/aklajnert/pytest-subprocess/pull/63>`_, `#67 <https://github.com/aklajnert/pytest-subprocess/pull/67>`_: Add missing items to `asyncio.subprocess`.
15+
16+
Other changes
17+
~~~~~~~~~~~~~
18+
* `#69 <https://github.com/aklajnert/pytest-subprocess/pull/69>`_: Extracted code into separate files to improve navigation.
19+
420
1.3.2 (2021-11-07)
521
------------------
622

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

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

changelog.d/bug.baf01777.entry.yaml

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

changelog.d/feature.0f8582b8.entry.yaml

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

changelog.d/other.46c33788.entry.yaml

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

changelog.d/releases/15.1.4.0.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
entries:
2+
bug:
3+
- message: Make `stdout` and `stderr` an `asyncio.StreamReader` instance when using
4+
asyncio functions.
5+
pr_ids:
6+
- '68'
7+
timestamp: 1641746962
8+
- message: Add missing items to `asyncio.subprocess`.
9+
pr_ids:
10+
- '63'
11+
- '67'
12+
timestamp: 1639330523
13+
feature:
14+
- message: Add support for stdin with asyncio.
15+
pr_ids:
16+
- '71'
17+
timestamp: 1642946529
18+
other:
19+
- message: Extracted code into separate files to improve navigation.
20+
pr_ids:
21+
- '69'
22+
timestamp: 1642333772
23+
previous_release: 1.3.2
24+
release_date: '2022-01-23'
25+
release_description: ''
26+
release_version: 1.4.0

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.3.2",
19+
version="1.4.0",
2020
author="Andrzej Klajnert",
2121
author_email="python@aklajnert.pl",
2222
maintainer="Andrzej Klajnert",

0 commit comments

Comments
 (0)