Switch to CalVer versioning (YYYY.MM.DD.XX)

This commit is contained in:
2026-04-13 13:23:14 +00:00
parent 8cf5bb51ee
commit 9bead9ca5d
+2 -2
View File
@@ -13,7 +13,7 @@ import secrets
from database import get_db, init_db from database import get_db, init_db
from models import User, AgentCatalog, AgentInstance, Run, LLMProvider 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 --- # --- Auth ---
@@ -143,7 +143,7 @@ def me(user: dict = Depends(require_auth), db: Session = Depends(get_db)):
@app.get("/api/health") @app.get("/api/health")
def 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 --- # --- Agent Catalog ---