File tree 4 files changed +21
-8
lines changed
4 files changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,26 @@ Release history
5
5
6
6
.. towncrier release notes start
7
7
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
+
8
28
trio-asyncio 0.14.1 (2024-04-18)
9
29
--------------------------------
10
30
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# This file is imported from __init__.py and exec'd from setup.py
2
2
3
- __version__ = "0.14.1 +dev"
3
+ __version__ = "0.15.0 +dev"
You can’t perform that action at this time.
0 commit comments