Skip to content

Commit

Permalink
Release 0.17.2 (#1356)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kludex authored Feb 3, 2022
1 parent 9722ca4 commit 41e339d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 0.17.2 - 2022-02-03

### Fixed

- Revert #1332. While trying to solve the memory leak, it introduced an issue (#1345) when the server receives big chunks of data using the `httptools` implementation. (#1354) 03/02/22
- Revert stream interface changes. This was introduced on 0.14.0, and caused an issue (#1226), which caused a memory leak when sending TCP pings. (#1355) 03/02/22
- Fix wsproto version check expression (#1342) 28/01/22

## 0.17.1 - 2022-01-28

### Fixed
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.17.1"
__version__ = "0.17.2"
__all__ = ["main", "run", "Config", "Server"]

0 comments on commit 41e339d

Please sign in to comment.