From: Marcelo Trylesinski Date: Sat, 21 Jun 2025 03:37:10 +0000 (+0800) Subject: Version 0.47.1 (#2952) X-Git-Tag: 0.47.1 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=fa5355442753f794965ae1af0f87f9fec1b9a3de;p=thirdparty%2Fstarlette.git Version 0.47.1 (#2952) --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 2ba0ed78..596b54c1 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,13 @@ toc_depth: 2 --- +## 0.47.1 (June 21, 2025) + +#### Fixed + +* Use `Self` in `TestClient.__enter__` [#2951](https://github.com/encode/starlette/pull/2951). +* Allow async exception handlers to type-check [#2949](https://github.com/encode/starlette/pull/2949). + ## 0.47.0 (May 29, 2025) #### Added diff --git a/starlette/__init__.py b/starlette/__init__.py index bf97bc40..24c25942 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.47.0" +__version__ = "0.47.1"