From 5ed55c441126687106109a3f5e051176f88cd3e6 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Sat, 27 Jul 2024 19:55:52 +0200 Subject: [PATCH] Version 0.38.2 (#2655) --- docs/release-notes.md | 10 +++++++++- starlette/__init__.py | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 7d78e824d..1fd9e79da 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 53b39ad36..52d9aaa46 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.38.1" +__version__ = "0.38.2"