diff --git a/CHANGELOG.md b/CHANGELOG.md index 617c366dc..037a940f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 0.11.6 + +* Fix overriding the root logger. + ## 0.11.5 * Revert "Watch all files, not just .py" due to unexpected side effects. diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index 0105b58c9..d7741075e 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.11.5" +__version__ = "0.11.6" __all__ = ["main", "run", "Config", "Server"]