From 0b941abfbb527d102d11e950c2fea1f9ecf1988f Mon Sep 17 00:00:00 2001 From: euri10 Date: Sun, 22 Nov 2020 10:31:45 +0100 Subject: [PATCH] v0.12.3 (#862) * Completed CHANGELOG.md and new bimp * Modified after reading https://keepachangelog.com/ * bullet points! Co-authored-by: Florimond Manca Co-authored-by: Florimond Manca --- CHANGELOG.md | 8 ++++++++ uvicorn/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8367d22bc..f47c8ba78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 0.12.3 - 2020-11-21 + +### Fixed +- Fix race condition that leads Quart to hang with uvicorn (#848) 11/18/20 de213614 +- Use latin1 when decoding X-Forwarded-* headers (#701) 11/12/20 45e6e831 +- Rework IPv6 support (#837) 11/8/20 bdab488e +- Cancel old keepalive-trigger before setting new one. (#832) 10/26/20 d5dcf80c + ## 0.12.2 - 2020-10-19 ### Added diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index 2e4d85ce1..d2929d860 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.12.2" +__version__ = "0.12.3" __all__ = ["main", "run", "Config", "Server"]