diff --git a/docs/source/index.rst b/docs/source/index.rst index 74ff8a7..c0c4077 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -123,7 +123,7 @@ Autodetection heuristics * functions decorated with `contextlib.asynccontextmanager `__, - * functions that have an attribute ``__returns_acontextmanager__`` + * functions that have an attribute ``__returns_acontextmanager__`` (note the ``a``) with a truthy value. * ``:for:`` is autodetected for generators. @@ -298,6 +298,21 @@ Revision history .. towncrier release notes start +Sphinxcontrib_Trio 1.2.0 (2026-01-29) ++++++++++++++++++++++++++++++++++++++ + +Bugfixes +~~~~~~~~ + +- Fix `sphinxcontrib-trio` for Sphinx 9.0 (`#399 `__) + + +Deprecations and Removals +~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Drop support for Sphinx 2.1 and earlier. Drop support for Python 3.5. (`#225 `__) + + Sphinxcontrib_Trio 1.1.2 (2020-05-04) +++++++++++++++++++++++++++++++++++++ diff --git a/newsfragments/225.removal.rst b/newsfragments/225.removal.rst deleted file mode 100644 index 1d04bf0..0000000 --- a/newsfragments/225.removal.rst +++ /dev/null @@ -1 +0,0 @@ -Drop support for Sphinx 1.7 and earlier. Drop support for Python 3.5. diff --git a/newsfragments/399.bugfix.rst b/newsfragments/399.bugfix.rst deleted file mode 100644 index 6d0af88..0000000 --- a/newsfragments/399.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix `sphinxcontrib-trio` for Sphinx 9.0 diff --git a/sphinxcontrib_trio/_version.py b/sphinxcontrib_trio/_version.py index 938d993..6b88fe2 100644 --- a/sphinxcontrib_trio/_version.py +++ b/sphinxcontrib_trio/_version.py @@ -1 +1 @@ -__version__ = "1.1.2+dev" +__version__ = "1.2.0+dev"