From 9d7352e2975903f77eba5464293b43a1a88b431b Mon Sep 17 00:00:00 2001 From: S3wnkin Date: Fri, 12 Dec 2025 18:22:50 +0700 Subject: [PATCH] Bump version to v0.1.2 --- fastapi_msgspec_openapi/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fastapi_msgspec_openapi/__init__.py b/fastapi_msgspec_openapi/__init__.py index b1251ec..f7ce987 100644 --- a/fastapi_msgspec_openapi/__init__.py +++ b/fastapi_msgspec_openapi/__init__.py @@ -23,7 +23,7 @@ async def get_user() -> User: from fastapi_msgspec_openapi.scanner import extract_struct, is_struct, scan_routes from fastapi_msgspec_openapi.schema import generate_struct_schemas -__version__ = "0.1.1" +__version__ = "0.1.2" __all__ = [ "MsgSpecPlugin", diff --git a/pyproject.toml b/pyproject.toml index e9792de..610fe9f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "fastapi-msgspec-openapi" -version = "0.1.1" +version = "0.1.2" description = "FastAPI plugin for automatic OpenAPI schema generation from msgspec structs" readme = "README.md" license = { text = "MIT" }