diff --git a/docs/source/history.rst b/docs/source/history.rst index d66ac70ff0..2ca86c6980 100644 --- a/docs/source/history.rst +++ b/docs/source/history.rst @@ -5,6 +5,21 @@ Release history .. towncrier release notes start +trio 0.33.0 (2026-02-14) +------------------------ + +Bugfixes +~~~~~~~~ + +- Start supporting Android's new ``"android"`` `sys.platform`. (`#3357 `__) + + +Deprecations and removals +~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Both :class:`trio.testing.RaisesGroup` and :class:`trio.testing.Matcher` have been deprecated. Pytest alternatives ``pytest.RaisesGroup`` and ``pytest.RaisesExc`` (respectively) are considered correct replacement. (`#3326 `__) + + trio 0.32.0 (2025-10-31) ------------------------ diff --git a/newsfragments/3326.deprecated.rst b/newsfragments/3326.deprecated.rst deleted file mode 100644 index 74916bf4e6..0000000000 --- a/newsfragments/3326.deprecated.rst +++ /dev/null @@ -1 +0,0 @@ -Both :class:`trio.testing.RaisesGroup` and :class:`trio.testing.Matcher` have been deprecated. Pytest alternatives ``pytest.RaisesGroup`` and ``pytest.RaisesExc`` (respectively) are considered correct replacement. diff --git a/newsfragments/3357.bugfix.rst b/newsfragments/3357.bugfix.rst deleted file mode 100644 index d2badc264b..0000000000 --- a/newsfragments/3357.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Start supporting Android's new ``"android"`` `sys.platform`. diff --git a/src/trio/_version.py b/src/trio/_version.py index 659188b5e0..45aff2b105 100644 --- a/src/trio/_version.py +++ b/src/trio/_version.py @@ -1,3 +1,3 @@ # This file is imported from __init__.py and parsed by setuptools -__version__ = "0.32.0+dev" +__version__ = "0.33.0+dev"