From 2d4189100a597cd5f280479476b40c80e9864a7e Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sat, 18 Oct 2025 00:10:45 +0100 Subject: [PATCH] Release 2.3.5 --- CHANGES.md | 5 +++++ pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index fed7d43..0a0353a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Microdot change log +**Release 2.3.5** - 2025-10-18 + +- Always encode ASGI response bodies to bytes ([commit](https://github.com/miguelgrinberg/microdot/commit/f70c524fb0bdc8c5fef2223c82f5e339445bc5fa)) +- Remove unused instance variable in `Microdot` class ([commit](https://github.com/miguelgrinberg/microdot/commit/27fc03f10047e4483f8d19559025d728b14a27c8)) + **Release 2.3.4** - 2025-10-16 - Prevent reading past EOF in multipart parser [#309](https://github.com/miguelgrinberg/microdot/issues/309) ([commit](https://github.com/miguelgrinberg/microdot/commit/6045390cef8735cbbc9f5f7eee7a3912f00e284d)) diff --git a/pyproject.toml b/pyproject.toml index 29c3408..6e3d9a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "microdot" -version = "2.3.5.dev0" +version = "2.3.5" authors = [ { name = "Miguel Grinberg", email = "miguel.grinberg@gmail.com" }, ]