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"