Skip to content

Commit

Permalink
Version 0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kludex committed Jul 2, 2022
1 parent c322a06 commit 115faee
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# Change Log

## 0.19.0 - <DATE>

### Fixed

- `reload_delay` default changed from `None` to `0.25` on `uvicorn.run()` and `Config`. `None` is not an acceptable value anymore. (#1545) 02/07/22

## 0.18.2 - 2022-06-27

### Fixed
Expand Down Expand Up @@ -41,8 +47,8 @@

### Fixed

- Fix case where url is fragmented in httptools protocol (#1263) 2/16/22
- Fix WSGI middleware not to explode quadratically in the case of a larger body (#1329) 2/16/16
- Fix case where url is fragmented in httptools protocol (#1263) 16/02/22
- Fix WSGI middleware not to explode quadratically in the case of a larger body (#1329) 16/02/16

### Changed

Expand Down
2 changes: 1 addition & 1 deletion uvicorn/__init__.py
@@ -1,5 +1,5 @@
from uvicorn.config import Config
from uvicorn.main import Server, main, run

__version__ = "0.18.2"
__version__ = "0.19.0"
__all__ = ["main", "run", "Config", "Server"]

0 comments on commit 115faee

Please sign in to comment.