diff --git a/CHANGELOG.md b/CHANGELOG.md index 188b3a963..4e4f74e19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,16 @@ # Change Log +## 0.27.1 - 2024-02-10 + +- Fix spurious LocalProtocolError errors when processing pipelined requests (#2243) 10/02/24 + ## 0.27.0.post1 - 2024-01-29 ### Fixed - Fix nav overrides for newer version of Mkdocs Material (#2233) 26/01/24 -## 0.27.0 - 2024-01-20 +## 0.27.0 - 2024-01-22 ### Added diff --git a/README.md b/README.md index 0d57e8701..29d7af6d7 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ **Documentation**: [https://www.uvicorn.org](https://www.uvicorn.org) -**Requirements**: Python 3.8+ +--- Uvicorn is an ASGI web server implementation for Python. diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index f956e09cd..5f83184a6 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.27.0.post1" +__version__ = "0.27.1" __all__ = ["main", "run", "Config", "Server"]