Skip to content

Commit

Permalink
Run towncrier and bump version to 0.15.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
oremanj committed Apr 24, 2024
1 parent 898ab8d commit d4a5100
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
20 changes: 20 additions & 0 deletions docs/source/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,26 @@ Release history

.. towncrier release notes start
trio-asyncio 0.15.0 (2024-04-24)
--------------------------------

Features
~~~~~~~~

- trio-asyncio now properly finalizes asyncio-flavored async generators
upon closure of the event loop. Previously, Trio's async generator finalizers
would try to finalize all async generators in Trio mode, regardless of their
flavor, which could lead to spurious errors. (`#92 <https://github.com/python-trio/trio-asyncio/issues/92>`__)


Bugfixes
~~~~~~~~

- trio-asyncio no longer raises a spurious "Event loop stopped before Future
completed!" exception if a function passed to :func:`asyncio.run` calls
:func:`sys.exit`. (`#149 <https://github.com/python-trio/trio-asyncio/issues/149>`__)


trio-asyncio 0.14.1 (2024-04-18)
--------------------------------

Expand Down
3 changes: 0 additions & 3 deletions newsfragments/149.bugfix.rst

This file was deleted.

4 changes: 0 additions & 4 deletions newsfragments/92.feature.rst

This file was deleted.

2 changes: 1 addition & 1 deletion trio_asyncio/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# This file is imported from __init__.py and exec'd from setup.py

__version__ = "0.14.1+dev"
__version__ = "0.15.0"

0 comments on commit d4a5100

Please sign in to comment.