diff --git a/CHANGES.md b/CHANGES.md index 806b860..3a412df 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,7 +2,14 @@ **Release 2.0.0** - 2023-12-22 -- Major redesign switching to asyncio as the base implementation (See the [Migration Guide](https://microdot.readthedocs.io/en/stable/migrating.html) in the docs for details) [#186](https://github.com/miguelgrinberg/microdot/issues/186) ([commit](https://github.com/miguelgrinberg/microdot/commit/20ea305fe793eb206b52af9eb5c5f3c1e9f57dbb)) +- Major redesign [#186](https://github.com/miguelgrinberg/microdot/issues/186) ([commit](https://github.com/miguelgrinberg/microdot/commit/20ea305fe793eb206b52af9eb5c5f3c1e9f57dbb)) + - Code reorganization as a `microdot` package + - Asyncio is now the core implementation + - New support for Server-Sent Events (SSE) + - Several extensions redesigned + - Support for "partitioned" cookies + - [Cross-compiling and freezing](https://microdot.readthedocs.io/en/stable/freezing.html) guidance + - A [Migration Guide](https://microdot.readthedocs.io/en/stable/migrating.html) to help transition to version 2 from older releases **Release 1.3.4** - 2023-11-08 diff --git a/README.md b/README.md index f455f95..0418f24 100644 --- a/README.md +++ b/README.md @@ -32,5 +32,10 @@ describes the backwards incompatible changes that were made. ## Resources -- Documentation: [Latest](https://microdot.readthedocs.io/en/latest/) [Stable](https://microdot.readthedocs.io/en/stable/) [Legacy v1.x](https://microdot.readthedocs.io/en/v1/) +- Documentation + - [Stable](https://microdot.readthedocs.io/en/stable/) + - [Latest](https://microdot.readthedocs.io/en/latest/) +- Still using version 1? + - [Code](https://github.com/miguelgrinberg/microdot/tree/v1) + - [Documentation](https://microdot.readthedocs.io/en/v1/) - [Change Log](https://github.com/miguelgrinberg/microdot/blob/main/CHANGES.md)