From a50051308509600388ed170fdedacfb673757de4 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Sat, 14 Dec 2024 12:12:52 +0100 Subject: [PATCH] Version 0.33.0 (#2539) --- CHANGELOG.md | 6 ++++++ uvicorn/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffa11d53f..b6a62dc5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.33.0 (2024-12-14) + +### Removed + +* Remove `WatchGod` support for `--reload` [#2536](https://github.com/encode/uvicorn/pull/2536) + ## 0.32.1 (2024-11-20) ### Fixed diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index 869de7984..0a8f431f4 100644 --- a/uvicorn/__init__.py +++ b/uvicorn/__init__.py @@ -1,5 +1,5 @@ from uvicorn.config import Config from uvicorn.main import Server, main, run -__version__ = "0.32.1" +__version__ = "0.33.0" __all__ = ["main", "run", "Config", "Server"]