From 25f4d0866ee41c94a9f9de095820217c75b4bbdd Mon Sep 17 00:00:00 2001 From: abersheeran Date: Wed, 26 Jun 2024 17:40:46 +0800 Subject: [PATCH] v1.10.5 --- a2wsgi/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"