diff --git a/CHANGELOG.md b/CHANGELOG.md index 261950461..2a1c24290 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +### 0.17.4 - 2022-02-04 + +### Fixed + +- Replace `create_server` by `create_unix_server` (#1362) 04/02/22 + ## 0.17.3 - 2022-02-03 ### Fixed diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index e2481d766..420979cbe 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.3" +__version__ = "0.17.4" __all__ = ["main", "run", "Config", "Server"]