Skip to content

Commit 60172de

Browse files
committed
Bump version to 0.23.2
1 parent f1cb241 commit 60172de

File tree

7 files changed

+24
-6
lines changed

7 files changed

+24
-6
lines changed

docs/source/history.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,29 @@ Release history
55

66
.. towncrier release notes start
77
8+
Trio 0.23.2 (2023-12-14)
9+
------------------------
10+
11+
Features
12+
~~~~~~~~
13+
14+
- `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>`__)
15+
16+
17+
Bugfixes
18+
~~~~~~~~
19+
20+
- Make pyright recognize :func:`open_memory_channel` as generic. (`#2873 <https://github.com/python-trio/trio/issues/2873>`__)
21+
22+
23+
Miscellaneous internal changes
24+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25+
26+
- Moved the metadata into :pep:`621`-compliant :file:`pyproject.toml`. (`#2860 <https://github.com/python-trio/trio/issues/2860>`__)
27+
- do not depend on exceptiongroup pre-release (`#2861 <https://github.com/python-trio/trio/issues/2861>`__)
28+
- Move .coveragerc into pyproject.toml (`#2867 <https://github.com/python-trio/trio/issues/2867>`__)
29+
30+
831
Trio 0.23.1 (2023-11-04)
932
------------------------
1033

newsfragments/2860.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

newsfragments/2861.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

newsfragments/2867.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

newsfragments/2873.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

newsfragments/2881.feature.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/trio/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# This file is imported from __init__.py and parsed by setuptools
22

3-
__version__ = "0.23.1+dev"
3+
__version__ = "0.23.2"

0 commit comments

Comments
 (0)