diff --git a/CHANGES.md b/CHANGES.md index 98e0b80..0afd8e4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Microdot change log +**Release 2.0.5** - 2024-03-09 + +- Correct handling of 0 as an integer argument (regression from #207) [#212](https://github.com/miguelgrinberg/microdot/issues/212) ([commit](https://github.com/miguelgrinberg/microdot/commit/d0a4cf8fa7dfb1da7466157b18d3329a8cf9a5df)) + **Release 2.0.4** - 2024-02-20 - Do not use regexes for parsing simple URLs [#207](https://github.com/miguelgrinberg/microdot/issues/207) ([commit #1](https://github.com/miguelgrinberg/microdot/commit/38262c56d34784401659639b482a4a1224e1e59a) [commit #2](https://github.com/miguelgrinberg/microdot/commit/f6cba2c0f7e18e2f32b5adb779fb037b6c473eab)) diff --git a/pyproject.toml b/pyproject.toml index 89261f4..00c872b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "microdot" -version = "2.0.5.dev0" +version = "2.0.5" authors = [ { name = "Miguel Grinberg", email = "miguel.grinberg@gmail.com" }, ]