Compare commits

...

2 Commits

Author SHA1 Message Date
Илья Глазунов
bb2c3aa357 bump version to 0.9.1
All checks were successful
Build and Release / release (push) Successful in 5s
CI/CD Pipeline / build-and-release (push) Has been skipped
CI/CD Pipeline / notify (push) Successful in 1s
Lint Code / lint (push) Successful in 40s
Run Tests / test (3.12) (push) Successful in 1m3s
Run Tests / test (3.13) (push) Successful in 1m4s
CI/CD Pipeline / lint (push) Successful in 0s
Build and Release / build (push) Successful in 37s
CI/CD Pipeline / test (push) Has been skipped
2025-12-03 13:02:41 +03:00
Илья Глазунов
6761b791c3 version bump in __init__ 2025-12-03 13:02:10 +03:00
3 changed files with 8 additions and 2 deletions

View File

@ -25,3 +25,9 @@ follow_imports = skip
[mypy-django.*] [mypy-django.*]
ignore_missing_imports = True ignore_missing_imports = True
[mypy-a2wsgi]
ignore_missing_imports = True
[mypy-asgiref.*]
ignore_missing_imports = True

View File

@ -1,6 +1,6 @@
[project] [project]
name = "pyserve" name = "pyserve"
version = "0.9.0" version = "0.9.1"
description = "Simple HTTP Web server written in Python" description = "Simple HTTP Web server written in Python"
authors = [ authors = [
{name = "Илья Глазунов",email = "i.glazunov@sapiens.solutions"} {name = "Илья Глазунов",email = "i.glazunov@sapiens.solutions"}

View File

@ -2,7 +2,7 @@
PyServe - HTTP web server written on Python PyServe - HTTP web server written on Python
""" """
__version__ = "0.8.0" __version__ = "0.9.0"
__author__ = "Ilya Glazunov" __author__ = "Ilya Glazunov"
from .asgi_mount import ( from .asgi_mount import (