diff --git a/docs/release-notes.md b/docs/release-notes.md index f259ac038..470df0fe4 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,10 +1,18 @@ +## 0.37.0 + +February 5, 2024 + +#### Added + +* Support the WebSocket Denial Response ASGI extension [#2041](https://github.com/encode/starlette/pull/2041). + ## 0.36.3 February 4, 2024 #### Fixed -* Create `anyio.Event` on async context [#2459](https://github.com/encode/starlette/2459). +* Create `anyio.Event` on async context [#2459](https://github.com/encode/starlette/pull/2459). ## 0.36.2 diff --git a/starlette/__init__.py b/starlette/__init__.py index 21b1c2c0e..2d93b0cd2 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.36.3" +__version__ = "0.37.0"