diff --git a/CHANGELOG.md b/CHANGELOG.md index fccc66509..34b74c6c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## 0.11.8 - 2020-07-30 + +* Fix a regression that caused Uvicorn to crash when using `--interface=wsgi`. (Pull #730) +* Fix a regression that caused Uvicorn to crash when using unix domain sockets. (Pull #729) + ## 0.11.7 - 2020-28-07 * SECURITY FIX: Prevent sending invalid HTTP header names and values. (Pull #725) diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index becb78a0e..745b4904e 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.7" +__version__ = "0.11.8" __all__ = ["main", "run", "Config", "Server"]