diff --git a/docs/release-notes.md b/docs/release-notes.md index cd539dd6d..30fdca8b2 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,3 +1,14 @@ +## 0.14.1 + +November 9th, 2020 + +### Removed + +* `UJSONResponse` was removed (this change was intended to be included in 0.14.0). Please see the + [documentation](https://www.starlette.io/responses/#custom-json-serialization) for how to + implement responses using custom JSON serialization - + [#1074](https://github.com/encode/starlette/pull/1047). + ## 0.14.0 November 8th, 2020 diff --git a/starlette/__init__.py b/starlette/__init__.py index 9e78220f9..f075dd36a 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.14.0" +__version__ = "0.14.1"