diff --git a/docs/release-notes.md b/docs/release-notes.md index 22ecca400..9442d0c58 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,3 +1,15 @@ +## 0.22.0 + +November 17, 2022 + +### Changed +* Bypass `GZipMiddleware` when response includes `Content-Encoding` [#1901](https://github.com/encode/starlette/pull/1901). + +### Fixed +* Remove unneeded `unquote()` from query parameters on the `TestClient` [#1953](https://github.com/encode/starlette/pull/1953). +* Make sure `MutableHeaders._list` is actually a `list` [#1917](https://github.com/encode/starlette/pull/1917). +* Import compatibility with the next version of `AnyIO` [#1936](https://github.com/encode/starlette/pull/1936). + ## 0.21.0 September 26, 2022 diff --git a/starlette/__init__.py b/starlette/__init__.py index 6a726d853..5963297e7 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.21.0" +__version__ = "0.22.0"