From 9bead9ca5dd5309d83706c95d5557731c84ff375 Mon Sep 17 00:00:00 2001 From: Eric Jungbauer Date: Mon, 13 Apr 2026 13:23:14 +0000 Subject: [PATCH] Switch to CalVer versioning (YYYY.MM.DD.XX) --- dashboard/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard/app.py b/dashboard/app.py index c78e197..d5ccde7 100644 --- a/dashboard/app.py +++ b/dashboard/app.py @@ -13,7 +13,7 @@ import secrets from database import get_db, init_db from models import User, AgentCatalog, AgentInstance, Run, LLMProvider -app = FastAPI(title="Agent Command Center", version="2.0.0") +app = FastAPI(title="Agent Command Center", version="2026.04.12.01") # --- Auth --- @@ -143,7 +143,7 @@ def me(user: dict = Depends(require_auth), db: Session = Depends(get_db)): @app.get("/api/health") def health(): - return {"status": "ok", "service": "agent-command-center", "version": "2.0.0"} + return {"status": "ok", "service": "agent-command-center", "version": "2026.04.12.01"} # --- Agent Catalog ---