diff --git a/a2wsgi/__init__.py b/a2wsgi/__init__.py index 3c926c2..34d63ae 100644 --- a/a2wsgi/__init__.py +++ b/a2wsgi/__init__.py @@ -1,7 +1,7 @@ from .asgi import ASGIMiddleware from .wsgi import WSGIMiddleware -VERSION = (1, 9, 0) +VERSION = (1, 10, 0) __version__: str = ".".join(map(str, VERSION)) diff --git a/pyproject.toml b/pyproject.toml index 33d80d8..6d4fd3e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ license = {text = "Apache-2.0"} name = "a2wsgi" readme = "README.md" requires-python = ">=3.8.0" -version = "1.9.0" +version = "1.10.0" [project.urls] homepage = "https://github.com/abersheeran/a2wsgi"