Skip to content

Commit ad53a45

Browse files
authored
Merge pull request #151 from oremanj/release-v0.15.0
Release v0.15.0
2 parents 898ab8d + 7b02a9e commit ad53a45

File tree

4 files changed

+21
-8
lines changed

4 files changed

+21
-8
lines changed

docs/source/history.rst

+20
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,26 @@ Release history
55

66
.. towncrier release notes start
77
8+
trio-asyncio 0.15.0 (2024-04-24)
9+
--------------------------------
10+
11+
Features
12+
~~~~~~~~
13+
14+
- trio-asyncio now properly finalizes asyncio-flavored async generators
15+
upon closure of the event loop. Previously, Trio's async generator finalizers
16+
would try to finalize all async generators in Trio mode, regardless of their
17+
flavor, which could lead to spurious errors. (`#92 <https://github.com/python-trio/trio-asyncio/issues/92>`__)
18+
19+
20+
Bugfixes
21+
~~~~~~~~
22+
23+
- trio-asyncio no longer raises a spurious "Event loop stopped before Future
24+
completed!" exception if a function passed to :func:`asyncio.run` calls
25+
:func:`sys.exit`. (`#149 <https://github.com/python-trio/trio-asyncio/issues/149>`__)
26+
27+
828
trio-asyncio 0.14.1 (2024-04-18)
929
--------------------------------
1030

newsfragments/149.bugfix.rst

-3
This file was deleted.

newsfragments/92.feature.rst

-4
This file was deleted.

trio_asyncio/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# This file is imported from __init__.py and exec'd from setup.py
22

3-
__version__ = "0.14.1+dev"
3+
__version__ = "0.15.0+dev"

0 commit comments

Comments
 (0)