diff --git a/app/main.py b/app/main.py index bb9c575..b61dcfa 100644 --- a/app/main.py +++ b/app/main.py @@ -1,11 +1,11 @@ import uvicorn from fastapi import FastAPI -app = FastAPI(title="CI/CD Demo", version="1.0.5") +app = FastAPI(title="CI/CD Demo", version="1.0.6") @app.get("/") def root(): - return {"status": "ok", "version": "1.0.5"} + return {"status": "ok", "version": "1.0.6"} @app.get("/health") def health():