diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a1c24290..45322f607 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +### 0.17.5 - 2022-02-16 + +### Fixed + +- Fix case where url is fragmented in httptools protocol (#1263) 2/16/22 +- Fix WSGI middleware not to explode quadratically in the case of a larger body (#1329) 2/16/16 + +### Changed + +- Send HTTP 400 response for invalid request (#1352) 2/11/22 + ### 0.17.4 - 2022-02-04 ### Fixed diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index 420979cbe..242e37d1a 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.17.4" +__version__ = "0.17.5" __all__ = ["main", "run", "Config", "Server"]