Skip to content

Commit

Permalink
Bump version to 0.23.2
Browse files Browse the repository at this point in the history
  • Loading branch information
A5rocks committed Dec 14, 2023
1 parent f1cb241 commit 60172de
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 6 deletions.
23 changes: 23 additions & 0 deletions docs/source/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,29 @@ Release history

.. towncrier release notes start
Trio 0.23.2 (2023-12-14)
------------------------

Features
~~~~~~~~

- `TypeVarTuple <https://docs.python.org/3.12/library/typing.html#typing.TypeVarTuple>`_ is now used to fully type :meth:`nursery.start_soon() <trio.Nursery.start_soon>`, :func:`trio.run()`, :func:`trio.to_thread.run_sync()`, and other similar functions accepting ``(func, *args)``. This means type checkers will be able to verify types are used correctly. :meth:`nursery.start() <trio.Nursery.start>` is not fully typed yet however. (`#2881 <https://github.com/python-trio/trio/issues/2881>`__)


Bugfixes
~~~~~~~~

- Make pyright recognize :func:`open_memory_channel` as generic. (`#2873 <https://github.com/python-trio/trio/issues/2873>`__)


Miscellaneous internal changes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- Moved the metadata into :pep:`621`-compliant :file:`pyproject.toml`. (`#2860 <https://github.com/python-trio/trio/issues/2860>`__)
- do not depend on exceptiongroup pre-release (`#2861 <https://github.com/python-trio/trio/issues/2861>`__)
- Move .coveragerc into pyproject.toml (`#2867 <https://github.com/python-trio/trio/issues/2867>`__)


Trio 0.23.1 (2023-11-04)
------------------------

Expand Down
1 change: 0 additions & 1 deletion newsfragments/2860.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/2861.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/2867.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/2873.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/2881.feature.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/trio/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# This file is imported from __init__.py and parsed by setuptools

__version__ = "0.23.1+dev"
__version__ = "0.23.2"

0 comments on commit 60172de

Please sign in to comment.