From: Marcelo Trylesinski Date: Sun, 29 Dec 2024 09:25:24 +0000 (+0100) Subject: Version 0.45.0 (#2828) X-Git-Tag: 0.45.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=31d182cf62f39fc95a3ec460f648ebaaced10756;p=thirdparty%2Fstarlette.git Version 0.45.0 (#2828) --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 1a4ff85b..6002c4d2 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,14 @@ toc_depth: 2 --- +## 0.45.0 (December 29, 2024) + +#### Removed + +* Drop Python 3.8 support [#2823](https://github.com/encode/starlette/pull/2823). +* Remove `ExceptionMiddleware` import proxy from `starlette.exceptions` module [#2826](https://github.com/encode/starlette/pull/2826). +* Remove deprecated `WS_1004_NO_STATUS_RCVD` and `WS_1005_ABNORMAL_CLOSURE` [#2827](https://github.com/encode/starlette/pull/2827). + ## 0.44.0 (December 28, 2024) #### Added diff --git a/starlette/__init__.py b/starlette/__init__.py index 1b33897f..4d8afa5b 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.44.0" +__version__ = "0.45.0"