Skip to content

Commit 7983c1a

Browse files
authored
Version 0.34.0 (#2546)
1 parent 75d4402 commit 7983c1a

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

CHANGELOG.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,27 @@
11
# Change Log
22

3+
## 0.34.0 (2024-12-15)
4+
5+
### Added
6+
7+
* Add `content-length` to 500 response in `wsproto` implementation (#2542)
8+
9+
### Removed
10+
11+
* Drop support for Python 3.8 (#2543)
12+
313
## 0.33.0 (2024-12-14)
414

515
### Removed
616

7-
* Remove `WatchGod` support for `--reload` [#2536](https://github.com/encode/uvicorn/pull/2536)
17+
* Remove `WatchGod` support for `--reload` (#2536)
818

919
## 0.32.1 (2024-11-20)
1020

1121
### Fixed
1222

13-
* Drop ASGI spec version to 2.3 on HTTP scope [#2513](https://github.com/encode/uvicorn/pull/2513)
14-
* Enable httptools lenient data on `httptools >= 0.6.3` [#2488](https://github.com/encode/uvicorn/pull/2488)
23+
* Drop ASGI spec version to 2.3 on HTTP scope (#2513)
24+
* Enable httptools lenient data on `httptools >= 0.6.3` (#2488)
1525

1626
## 0.32.0 (2024-10-15)
1727

uvicorn/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from uvicorn.config import Config
22
from uvicorn.main import Server, main, run
33

4-
__version__ = "0.33.0"
4+
__version__ = "0.34.0"
55
__all__ = ["main", "run", "Config", "Server"]

0 commit comments

Comments
 (0)