From 354513796ac3942aca9259d48e0e296f1dc868f0 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Mon, 1 Jun 2026 20:52:35 -0700 Subject: [PATCH] chore: bump version to 0.6.0 Release summary: - #60 split incidents tables to turnstone-incidents.db (eliminates FTS5 write lock starvation) - #41 Hybrid-BERT label mapping shim (7-class vocabulary support in classifier) - #15 hybrid BM25 + vector re-ranking for diagnose search (semantic=True, alpha=0.6/beta=0.4) - #32 domain-view mapping: 42 patterns annotated across 10 domains, by_domain in diagnose summary --- app/rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/rest.py b/app/rest.py index 36f2d0c..65ab88f 100644 --- a/app/rest.py +++ b/app/rest.py @@ -187,7 +187,7 @@ async def _lifespan(app: FastAPI): pass -app = FastAPI(title="Turnstone API", version="0.5.0", docs_url="/turnstone/docs", redoc_url=None, lifespan=_lifespan) +app = FastAPI(title="Turnstone API", version="0.6.0", docs_url="/turnstone/docs", redoc_url=None, lifespan=_lifespan) app.add_middleware( CORSMiddleware,