patx/micropie
adjust meta files for .21 release, bug fix minor release
Commit 6594c0a · patx · 2025-08-19T01:29:21-04:00
Comments
No comments yet.
Diff
diff --git a/docs/README.md b/docs/README.md
index 4d1e879..fa0a620 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -18,5 +18,13 @@ app = MyApp() # Run with `uvicorn app:app`
### And Easy to Install
```bash
-$ pip install micropie
+$ pip install micropie[all]
```
+
+### Useful Links
+- **Homepage**: [patx.github.io/micropie](https://patx.github.io/micropie)
+- **Official Documentation**: [micropie.readthedocs.io](https://micropie.readthedocs.io/)
+- **PyPI Page**: [pypi.org/project/MicroPie](https://pypi.org/project/MicroPie/)
+- **GitHub Project**: [github.com/patx/micropie](https://github.com/patx/micropie)
+
+
diff --git a/docs/release_notes.md b/docs/release_notes.md
index 3caaeda..201acd2 100644
--- a/docs/release_notes.md
+++ b/docs/release_notes.md
@@ -1,6 +1,7 @@
[](https://patx.github.io/micropie)
## Releases Notes
+- **[0.21](https://github.com/patx/micropie/releases/tag/v0.21)** - Bug fix release. Make sure index route handler can handle path params
- **[0.20](https://github.com/patx/micropie/releases/tag/v0.20)** - Enable concurrent multipart parsing and file writing with bounded queues
- **[0.19](https://github.com/patx/micropie/releases/tag/v0.19)** - Easier debugging with `traceback`. Add `_sub_app` attribute to allow middleware to mount other ASGI applications
- **[0.18](https://github.com/patx/micropie/releases/tag/v0.18)** - Ensure handlers that return async generators are killed upon client disconnect to prevent memory leaks
diff --git a/pyproject.toml b/pyproject.toml
index a79c1b1..fa25ae8 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
[project]
name = "micropie"
-version = "0.20"
+version = "0.21"
description = "An ultra micro ASGI web framework"
keywords = ["micropie", "asgi", "microframework", "http"]
readme = "docs/README.md"