From a4646040129eff570c3d7e28cc55770563a4d4bd Mon Sep 17 00:00:00 2001 From: A5rocks Date: Thu, 16 May 2024 15:16:38 +0900 Subject: [PATCH] Bump version to 0.25.1 --- docs/source/history.rst | 9 +++++++++ newsfragments/2987.issue.rst | 1 - src/trio/_version.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) delete mode 100644 newsfragments/2987.issue.rst diff --git a/docs/source/history.rst b/docs/source/history.rst index 3f4a907397..13bb7e2e48 100644 --- a/docs/source/history.rst +++ b/docs/source/history.rst @@ -5,6 +5,15 @@ Release history .. towncrier release notes start +Trio 0.25.1 (2024-05-16) +------------------------ + +Bugfixes +~~~~~~~~ + +- Fix crash when importing trio in embedded Python on Windows, and other installs that remove docstrings. (`#2987 `__) + + Trio 0.25.0 (2024-03-17) ------------------------ diff --git a/newsfragments/2987.issue.rst b/newsfragments/2987.issue.rst deleted file mode 100644 index 4c0adb1540..0000000000 --- a/newsfragments/2987.issue.rst +++ /dev/null @@ -1 +0,0 @@ -Fix crash when importing trio in embedded Python on Windows, and other installs that remove docstrings. diff --git a/src/trio/_version.py b/src/trio/_version.py index 3ec4a1be8b..e959c59c25 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.25.0+dev" +__version__ = "0.25.1"