Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.4.1 #28

Merged
merged 2 commits into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/source/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ Release history

.. towncrier release notes start

tricycle 0.4.1 (2024-02-02)
---------------------------

* :func:`open_service_nursery` no longer assumes that ``TaskStatus.started()``
will be called from inside the task that was just started. This restores
feature parity with regular Trio nurseries, which allow ``started()`` to be
called anywhere, and fixes
`trio-asyncio issue #135 <https://github.com/python-trio/trio-asyncio/issues/135>`__. (`#27 <https://github.com/oremanj/tricycle/issues/27>`__)

* tricycle no longer advertises itself as "experimental"; it has been around
for more than 4 years at this point and is being used in production.


tricycle 0.4.0 (2024-01-11)
---------------------------

Expand Down
6 changes: 0 additions & 6 deletions newsfragments/27.bugfix.rst

This file was deleted.

2 changes: 1 addition & 1 deletion tricycle/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.0+dev"
__version__ = "0.4.1+dev"
Loading