Version 2.5.2.dev0
Some checks failed
build / lint (push) Successful in 2m15s
build / tests (ubuntu-latest, 3.10) (push) Successful in 24s
build / tests (ubuntu-latest, 3.11) (push) Successful in 21s
build / tests (ubuntu-latest, 3.12) (push) Successful in 22s
build / tests (ubuntu-latest, 3.13) (push) Successful in 17s
build / tests (ubuntu-latest, 3.14) (push) Successful in 46s
build / tests (ubuntu-latest, 3.8) (push) Successful in 39s
build / tests (ubuntu-latest, 3.9) (push) Successful in 22s
build / tests-micropython (push) Successful in 12s
build / tests-circuitpython (push) Successful in 12s
build / coverage (push) Failing after 49s
build / benchmark (push) Successful in 55s
build / tests (macos-latest, 3.10) (push) Has been cancelled
build / tests (macos-latest, 3.11) (push) Has been cancelled
build / tests (macos-latest, 3.12) (push) Has been cancelled
build / tests (macos-latest, 3.13) (push) Has been cancelled
build / tests (macos-latest, 3.14) (push) Has been cancelled
build / tests (macos-latest, 3.8) (push) Has been cancelled
build / tests (macos-latest, 3.9) (push) Has been cancelled
build / tests (windows-latest, 3.10) (push) Has been cancelled
build / tests (windows-latest, 3.11) (push) Has been cancelled
build / tests (windows-latest, 3.12) (push) Has been cancelled
build / tests (windows-latest, 3.13) (push) Has been cancelled
build / tests (windows-latest, 3.14) (push) Has been cancelled
build / tests (windows-latest, 3.8) (push) Has been cancelled
build / tests (windows-latest, 3.9) (push) Has been cancelled

This commit is contained in:
Miguel Grinberg
2025-12-21 10:50:51 +00:00
parent 10e740da2b
commit de814acad2
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
[project] [project]
name = "microdot" name = "microdot"
version = "2.5.1" version = "2.5.2.dev0"
authors = [ authors = [
{ name = "Miguel Grinberg", email = "miguel.grinberg@gmail.com" }, { name = "Miguel Grinberg", email = "miguel.grinberg@gmail.com" },
] ]

View File

@@ -1,4 +1,4 @@
from microdot.microdot import Microdot, Request, Response, abort, redirect, \ from microdot.microdot import Microdot, Request, Response, abort, redirect, \
send_file, URLPattern, AsyncBytesIO, iscoroutine # noqa: F401 send_file, URLPattern, AsyncBytesIO, iscoroutine # noqa: F401
__version__ = '2.5.1' __version__ = '2.5.2.dev0'