From: Marcelo Trylesinski Date: Sat, 27 Jul 2024 17:55:52 +0000 (+0200) Subject: Version 0.38.2 (#2655) X-Git-Tag: 0.38.2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5ed55c441126687106109a3f5e051176f88cd3e6;p=thirdparty%2Fstarlette.git Version 0.38.2 (#2655) --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 7d78e824..1fd9e79d 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,10 +1,18 @@ +## 0.38.2 + +July 27, 2024 + +#### Fixed + +* Not assume all routines have `__name__` on `routing.get_name()` [#2648](https://github.com/encode/starlette/pull/2648). + ## 0.38.1 July 23, 2024 #### Removed -* Revert "Add support for ASGI pathsend extension" [#2649](https://github.com/encode/starlette/2649). +* Revert "Add support for ASGI pathsend extension" [#2649](https://github.com/encode/starlette/pull/2649). ## 0.38.0 diff --git a/starlette/__init__.py b/starlette/__init__.py index 53b39ad3..52d9aaa4 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.38.1" +__version__ = "0.38.2"