Skip to content

Commit

Permalink
Version 0.11.1 (#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomchristie authored Dec 20, 2019
1 parent 77e43f8 commit 13094d9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 0.11.1

* Use a more liberal `h11` dependency. Either `0.8.*` or `0.9.*``.

## 0.11.0

* Fix reload/multiprocessing on Windows with Python 3.8.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_packages(package):

requirements = [
"click==7.*",
"h11==0.9.*",
"h11>=0.8,<0.10",
"websockets==8.*",
"httptools==0.0.13 ;" + env_marker,
"uvloop>=0.14.0 ;" + env_marker,
Expand Down
2 changes: 1 addition & 1 deletion uvicorn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from uvicorn.config import Config
from uvicorn.main import Server, main, run

__version__ = "0.11.0"
__version__ = "0.11.1"
__all__ = ["main", "run", "Config", "Server"]

0 comments on commit 13094d9

Please sign in to comment.