patx/micropie
v0.15 release notes
Commit 169e05d · patx · 2025-07-04T17:33:25-04:00
Comments
No comments yet.
Diff
diff --git a/docs/release_notes.md b/docs/release_notes.md
index fab6e4d..06446c9 100644
--- a/docs/release_notes.md
+++ b/docs/release_notes.md
@@ -1,7 +1,7 @@
[](https://patx.github.io/micropie)
## Releases Notes
-
+- **[0.15](https://github.com/patx/micropie/releases/tag/v0.15)** - Minor bug fixes in the optional dependencies if statements
- **[0.14](https://github.com/patx/micropie/releases/tag/v0.14)** - Change import to `micropie` instead of `MicroPie` **BREAKING CHANGE**
- **[0.13](https://github.com/patx/micropie/releases/tag/v0.13)** - Introduce built-in WebSocket support
diff --git a/micropie.py b/micropie.py
index 5350aa0..0ab7e57 100644
--- a/micropie.py
+++ b/micropie.py
@@ -12,7 +12,6 @@ License: BSD3 (see LICENSE for details)
"""
__author__ = 'Harrison Erd'
-__version__ = '0.14-dev'
__license__ = 'BSD3'
import asyncio
diff --git a/pyproject.toml b/pyproject.toml
index 3c9d7fb..05b4a1a 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
[project]
name = "micropie"
-version = "0.14"
+version = "0.15"
description = "An ultra micro ASGI web framework"
keywords = ["micropie", "asgi", "microframework", "http"]
readme = "docs/README.md"