From 93411c6a9f305e121ab72bbfcbc9d56004931f70 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Wed, 8 Nov 2023 00:14:21 +0000 Subject: [PATCH] Release 1.3.4 --- CHANGES.md | 6 ++++++ pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index cdd1d48..6848fd9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,11 @@ # Microdot change log +**Release 1.3.4** - 2023-11-08 + +- Handle change in `wait_closed()` behavior in Python 3.12 [#177](https://github.com/miguelgrinberg/microdot/issues/177) ([commit](https://github.com/miguelgrinberg/microdot/commit/5550b20cdd347d59e2aa68f6ebf9e9abffaff9fc)) +- Added missing request argument in some documentation examples [#163](https://github.com/miguelgrinberg/microdot/issues/163) ([commit](https://github.com/miguelgrinberg/microdot/commit/744548f8dc33a72512b34c4001ee9c6c1edd22ee)) +- Fix minor documentation typos [#161](https://github.com/miguelgrinberg/microdot/issues/161) ([commit](https://github.com/miguelgrinberg/microdot/commit/2e4911d10826cbb3914de4a45e495c3be36543fa)) (thanks **Andy Piper**!) + **Release 1.3.3** - 2023-07-16 - Handle query string arguments without value [#149](https://github.com/miguelgrinberg/microdot/issues/149) ([commit](https://github.com/miguelgrinberg/microdot/commit/3554bc91cb1523efa5b66fe3ef173f8e86e8c2a0)) diff --git a/pyproject.toml b/pyproject.toml index 800bb75..f81fced 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "microdot" -version = "1.3.4.dev0" +version = "1.3.4" authors = [ { name = "Miguel Grinberg", email = "miguel.grinberg@gmail.com" }, ]