From 59eeae66e926a7c6c1b6fd1a6d8fbe31719ab1c3 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Fri, 14 Jan 2022 11:44:39 +0100 Subject: [PATCH] Release 0.17.0 (#1322) * Release 0.17.0 * ups --- CHANGELOG.md | 14 ++++++++++++++ uvicorn/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1260d5ea3..6d5f5bee0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## 0.17.0 - 2022-01-14 + +### Added + +- Allow configurable websocket per-message-deflate setting (#1300) 29/12/21 +- Support extra_headers for WS accept message (#1293) 06/01/22 +- Add missing http version on websockets scope (#1309) 08/01/22 + +### Fixed/Removed + +- Drop Python 3.6 support (#1261) 06/01/22 +- Fix reload process behavior when exception is raised (#1313) 11/01/22 +- Remove `root_path` from logs (#1294) 25/12/21 + ## 0.16.0 - 2021-12-08 ### Added diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index 6fdda0cff..63f4345dd 100644 --- a/uvicorn/__init__.py +++ b/uvicorn/__init__.py @@ -1,5 +1,5 @@ from uvicorn.config import Config from uvicorn.main import Server, main, run -__version__ = "0.16.0" +__version__ = "0.17.0" __all__ = ["main", "run", "Config", "Server"]