From: Marcelo Trylesinski Date: Sun, 29 Sep 2024 10:33:42 +0000 (+0200) Subject: Version 0.39.2 (#2710) X-Git-Tag: 0.39.2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0b50b9c4abd992a39d6e32148cc6f577ac3b1c44;p=thirdparty%2Fstarlette.git Version 0.39.2 (#2710) --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 8dcff9c4..39113f4d 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -3,6 +3,13 @@ hide: navigation toc_depth: 2 --- +## 0.39.2 (September 29, 2024) + +#### Fixed + +- Allow use of `request.url_for` when only "app" scope is available [#2672](https://github.com/encode/starlette/pull/2672). +- Fix internal type hints to support `python-multipart==0.0.12` [#2708](https://github.com/encode/starlette/pull/2708). + ## 0.39.1 (September 25, 2024) #### Fixed diff --git a/starlette/__init__.py b/starlette/__init__.py index 9442842a..0033e223 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.39.1" +__version__ = "0.39.2"