From aa0e318aa42a7e37a784089f5d0dff5049a0f8a4 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Mon, 27 Jun 2022 13:51:23 +0200 Subject: [PATCH] Version 0.18.2 (#1542) * Version 0.18.2 * Update CHANGELOG.md * Update CHANGELOG.md --- CHANGELOG.md | 10 ++++++++-- uvicorn/__init__.py | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b75a05d8d..763139ddc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,17 @@ # Change Log -## 0.18.1 - 2022-06-23 +## 0.18.2 - 2022-06-27 + +### Fixed +- Add default `log_config` on `uvicorn.run()` (#1541) 24/06/22 +- Revert `logging` file name modification (#1543) 27/06/22 + +## 0.18.1 - 2022-06-23 ### Fixed -- Use \`DEFAULT_MAX_INCOMPLETE_EVENT_SIZE\` as default to \`h11_max_incomplete_event_size\` on the CLI (#1534) 23/06/22 +- Use `DEFAULT_MAX_INCOMPLETE_EVENT_SIZE` as default to `h11_max_incomplete_event_size` on the CLI (#1534) 23/06/22 ## 0.18.0 - 2022-06-23 diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index 7bfde568a2..e4a4894395 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.18.1" +__version__ = "0.18.2" __all__ = ["main", "run", "Config", "Server"]