diff --git a/docs/release-notes.md b/docs/release-notes.md index d66b37097..eeb958efd 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,3 +1,15 @@ +## 0.32.0 + +### Added + +* Send `reason` on `WebSocketDisconnect` [#2309](https:://github.com/encode/starlette/pull/2309). +* Add `domain` parameter to `SessionMiddleware` [#2280](https:://github.com/encode/starlette/pull/2280). + +### Changed + +* Inherit from `HTMLResponse` instead of `Response` on `_TemplateResponse` [#2274](https://github.com/encode/starlette/pull/2274). +* Restore the `Response.render` type annotation to its pre-0.31.0 state [#2264](https://github.com/encode/starlette/pull/2264). + ## 0.31.1 August 26, 2023 diff --git a/starlette/__init__.py b/starlette/__init__.py index 7b31e06e9..13844a7b3 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.31.1" +__version__ = "0.32.0"