From 993e67a7af2b337125c17f63783c703504497324 Mon Sep 17 00:00:00 2001 From: A5rocks Date: Thu, 8 Aug 2024 09:31:27 +0900 Subject: [PATCH] Bump version to 0.26.2 --- docs/source/history.rst | 9 +++++++++ src/trio/_version.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/source/history.rst b/docs/source/history.rst index a5b407dc7..151c02af6 100644 --- a/docs/source/history.rst +++ b/docs/source/history.rst @@ -5,6 +5,15 @@ Release history .. towncrier release notes start +Trio 0.26.2 (2024-08-08) +------------------------ + +Bugfixes +~~~~~~~~ + +- Remove remaining ``hash`` usage and fix test configuration issue that prevented it from being caught. (`#3053 `__) + + Trio 0.26.1 (2024-08-05) ------------------------ diff --git a/src/trio/_version.py b/src/trio/_version.py index d73142ffe..21669c472 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.26.1+dev" +__version__ = "0.26.2"