diff --git a/a2wsgi/__init__.py b/a2wsgi/__init__.py index f5e7515..9e829b4 100644 --- a/a2wsgi/__init__.py +++ b/a2wsgi/__init__.py @@ -1,7 +1,7 @@ from .asgi import ASGIMiddleware from .wsgi import WSGIMiddleware -VERSION = (1, 10, 4) +VERSION = (1, 10, 5) __version__: str = ".".join(map(str, VERSION)) diff --git a/pyproject.toml b/pyproject.toml index 0ff4b01..6ee4787 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ license = { text = "Apache-2.0" } name = "a2wsgi" readme = "README.md" requires-python = ">=3.8.0" -version = "1.10.4" +version = "1.10.5" [project.urls] homepage = "https://github.com/abersheeran/a2wsgi"