From 3073f0c2108bad83c27dda6c83474a9b8ce4a957 Mon Sep 17 00:00:00 2001 From: A5rocks Date: Sun, 15 Feb 2026 03:27:28 +0900 Subject: [PATCH 1/2] Bump version to 0.33.0 --- docs/source/history.rst | 15 +++++++++++++++ newsfragments/3326.deprecated.rst | 1 - newsfragments/3357.bugfix.rst | 1 - src/trio/_version.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) delete mode 100644 newsfragments/3326.deprecated.rst delete mode 100644 newsfragments/3357.bugfix.rst 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..7a1cad22bd 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" From df041083eb88996a35ec84051b750aba8133795a Mon Sep 17 00:00:00 2001 From: A5rocks Date: Sun, 15 Feb 2026 03:42:05 +0900 Subject: [PATCH 2/2] Start new cycle --- src/trio/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/trio/_version.py b/src/trio/_version.py index 7a1cad22bd..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.33.0" +__version__ = "0.33.0+dev"