From 7b4583f305fe605f205b83a158fa0f64c88b887c Mon Sep 17 00:00:00 2001 From: Vishesh 'ironeagle' Bangotra Date: Sat, 10 Jan 2026 18:07:01 +0530 Subject: [PATCH] feat(templates): add CRUD and model CRUD app scaffolds; bump version to 0.0.2 - add OpenAPI-first CRUD app template with in-memory mock data - add model-based CRUD app template with Pydantic layer - include end-to-end tests for both templates - document explicit runtime status handling in routes - add Pydantic dependency for model_app support --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8ac764b..417dd3f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "openapi-first" -version = "0.0.1" +version = "0.0.2" description = "Strict OpenAPI-first application bootstrap for FastAPI." readme = "README.md" requires-python = ">=3.10"