From 5cf9208d5edc8271bae07de79a8ec3185734d9b6 Mon Sep 17 00:00:00 2001 From: abersheeran Date: Wed, 26 Jun 2024 17:50:00 +0800 Subject: [PATCH] v1.10.6 --- 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 9e829b4..75f2c01 100644 --- a/a2wsgi/__init__.py +++ b/a2wsgi/__init__.py @@ -1,7 +1,7 @@ from .asgi import ASGIMiddleware from .wsgi import WSGIMiddleware -VERSION = (1, 10, 5) +VERSION = (1, 10, 6) __version__: str = ".".join(map(str, VERSION)) diff --git a/pyproject.toml b/pyproject.toml index 6ee4787..78b3ff4 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.5" +version = "1.10.6" [project.urls] homepage = "https://github.com/abersheeran/a2wsgi"