diff --git a/docs/release-notes.md b/docs/release-notes.md index f2cb34cce..abec69bd4 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,3 +1,15 @@ +## 0.19.1 + +April 22, 2022 + +### Fixed +* Fix inference of `Route.name` when created from methods [#1553](https://github.com/encode/starlette/pull/1553). +* Avoid `TypeError` on `websocket.disconnect` when code is `None` [#1574](https://github.com/encode/starlette/pull/1574). + +### Deprecated +* Deprecate `WS_1004_NO_STATUS_RCVD` and `WS_1005_ABNORMAL_CLOSURE` in favor of `WS_1005_NO_STATUS_RCVD` and `WS_1006_ABNORMAL_CLOSURE`, as the previous constants didn't match the [WebSockets specs](https://www.iana.org/assignments/websocket/websocket.xhtml) [#1580](https://github.com/encode/starlette/pull/1580). + + ## 0.19.0 March 9, 2022 diff --git a/starlette/__init__.py b/starlette/__init__.py index 11ac8e1a9..4c1ca3c80 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.19.0" +__version__ = "0.19.1"