diff --git a/docs/release-notes.md b/docs/release-notes.md index 30fdca8b2..47d0d70bd 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,3 +1,17 @@ +## 0.14.2 + +February 2, 2021 + +### Fixed + +* Fixed `ServerErrorMiddleware` compatibility with Python 3.9.1/3.8.7 when debug mode is enabled - + [#1132](https://github.com/encode/starlette/pull/1132). +* Fixed unclosed socket `ResourceWarning`s when using the `TestClient` with WebSocket endpoints - + #1132. +* Improved detection of `async` endpoints wrapped in `functools.partial` on Python 3.8+ - + [#1106](https://github.com/encode/starlette/pull/1106). + + ## 0.14.1 November 9th, 2020 diff --git a/starlette/__init__.py b/starlette/__init__.py index f075dd36a..745162e73 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.14.1" +__version__ = "0.14.2"