From 8169f0ac6c9c6a672d5d06c530224eb59fee9e02 Mon Sep 17 00:00:00 2001 From: abersheeran Date: Wed, 13 Mar 2024 16:53:01 +0800 Subject: [PATCH] v1.10.4 --- 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 15deb64..f5e7515 100644 --- a/a2wsgi/__init__.py +++ b/a2wsgi/__init__.py @@ -1,7 +1,7 @@ from .asgi import ASGIMiddleware from .wsgi import WSGIMiddleware -VERSION = (1, 10, 3) +VERSION = (1, 10, 4) __version__: str = ".".join(map(str, VERSION)) diff --git a/pyproject.toml b/pyproject.toml index e3d3d85..45b4625 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.3" +version = "1.10.4" [project.urls] homepage = "https://github.com/abersheeran/a2wsgi"