From af2ae104b29402f10f070f79a9b553e51d9cacd9 Mon Sep 17 00:00:00 2001 From: Codegraff Date: Fri, 10 Jul 2026 23:21:10 +0800 Subject: [PATCH] release: v1.0.32 --- .bumpversion.cfg | 2 +- pyproject.toml | 2 +- python/setup.py | 2 +- python/turboapi/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 96c71ef..2ea1b65 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.31 +current_version = 1.0.32 commit = False tag = False diff --git a/pyproject.toml b/pyproject.toml index aca3d36..feddfed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "turboapi" -version = "1.0.31" +version = "1.0.32" description = "FastAPI-compatible web framework with Zig HTTP core — 20x faster with Python 3.14 free-threading" readme = "README.md" requires-python = ">=3.14" diff --git a/python/setup.py b/python/setup.py index eb8fdb9..45fd851 100644 --- a/python/setup.py +++ b/python/setup.py @@ -6,7 +6,7 @@ setup( name="turboapi", - version="1.0.31", + version="1.0.32", description="A high-performance Python web framework for the no-GIL era", long_description=open("../README.md").read(), long_description_content_type="text/markdown", diff --git a/python/turboapi/__init__.py b/python/turboapi/__init__.py index 8aa06eb..1eb4739 100644 --- a/python/turboapi/__init__.py +++ b/python/turboapi/__init__.py @@ -94,7 +94,7 @@ # WebSocket from .websockets import WebSocket, WebSocketDisconnect -__version__ = "1.0.31" +__version__ = "1.0.32" __all__ = [ # Core "TurboAPI",