Skip to content

Commit

Permalink
Version 0.18.3 (#1556)
Browse files Browse the repository at this point in the history
* Version 0.19.0

* Add notes about the cyclic reference removal

* Change 0.19.0 to 0.18.3

* Change version on __init__.py
  • Loading branch information
Kludex committed Aug 24, 2022
1 parent 91c1306 commit ccd1aae
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
@@ -1,5 +1,15 @@
# Change Log

## 0.18.3 - 2022-08-24

### Fixed

- Remove cyclic references on HTTP implementations. (#1604) 24/08/22

### Changed

- `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 +51,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.18.3"
__all__ = ["main", "run", "Config", "Server"]

0 comments on commit ccd1aae

Please sign in to comment.