Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.31
current_version = 1.0.32
commit = False
tag = False

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion python/turboapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
# WebSocket
from .websockets import WebSocket, WebSocketDisconnect

__version__ = "1.0.31"
__version__ = "1.0.32"
__all__ = [
# Core
"TurboAPI",
Expand Down
Loading