Skip to content

Commit 0feb720

Browse files
Release 2.6.0
1 parent e3689d7 commit 0feb720

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Microdot change log
22

3+
**Release 2.6.0** - 2026-03-08
4+
5+
- Added type hints for all pubic interfaces [#355](https://github.com/miguelgrinberg/microdot/issues/355) ([commit](https://github.com/miguelgrinberg/microdot/commit/e3689d7300485e6d0155a152f95fd1afeaf60be4))
6+
- Support the `start_serving` argument in the `start_server` method [#352](https://github.com/miguelgrinberg/microdot/issues/352) ([commit](https://github.com/miguelgrinberg/microdot/commit/ef1f4c032acd408f0dad42500610bca3084e1c2c)) (thanks **greenshoes33**!)
7+
- Add free-threading and pypy CI builds [#347](https://github.com/miguelgrinberg/microdot/issues/347) ([commit](https://github.com/miguelgrinberg/microdot/commit/605dcf3b99f0004fb8075d92df55844fe28ff0a6))
8+
- Documentation improvements ([commit](https://github.com/miguelgrinberg/microdot/commit/25c62748a6e5dd0c982b7e28a3ded7d5380fcb81))
9+
310
**Release 2.5.1** - 2025-12-21
411

512
- CSRF: accept cross-site request if origin is in the CORS allowed origin list ([commit](https://github.com/miguelgrinberg/microdot/commit/ba6893ca0fb3c3dd18cf934f8eee893cc2a10daa))

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "microdot"
3-
version = "2.5.2.dev0"
3+
version = "2.6.0"
44
authors = [
55
{ name = "Miguel Grinberg", email = "miguel.grinberg@gmail.com" },
66
]

src/microdot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from microdot.microdot import Microdot, Request, Response, abort, redirect, \
22
send_file, URLPattern, AsyncBytesIO, iscoroutine # noqa: F401
33

4-
__version__ = '2.5.2'
4+
__version__ = '2.6.0'

0 commit comments

Comments
 (0)