Spaces:
Running
Running
Commit ·
fc19538
1
Parent(s): ccc58b9
chore: bump version to 0.31.5 -- Sprint 7 complete (31 commits, 30+ bugs fixed)
Browse files- api/main.py +3 -3
- config/settings.py +1 -1
api/main.py
CHANGED
|
@@ -44,7 +44,7 @@ app = FastAPI(
|
|
| 44 |
"All data sourced from official government records. "
|
| 45 |
"Outputs are structural indicators, not legal findings."
|
| 46 |
),
|
| 47 |
-
version="0.31.
|
| 48 |
lifespan=lifespan,
|
| 49 |
)
|
| 50 |
|
|
@@ -101,7 +101,7 @@ app.include_router(runtime.router, tags=["Runtime"])
|
|
| 101 |
def root():
|
| 102 |
return {
|
| 103 |
"name": "BharatGraph API",
|
| 104 |
-
"version": "0.31.
|
| 105 |
"status": "running",
|
| 106 |
"docs": "/docs",
|
| 107 |
"health": "/health",
|
|
@@ -122,7 +122,7 @@ def health_check():
|
|
| 122 |
return HealthResponse(
|
| 123 |
status="ok" if connected else "degraded",
|
| 124 |
neo4j_connected=connected,
|
| 125 |
-
version="0.31.
|
| 126 |
generated_at=datetime.now().isoformat(),
|
| 127 |
)
|
| 128 |
|
|
|
|
| 44 |
"All data sourced from official government records. "
|
| 45 |
"Outputs are structural indicators, not legal findings."
|
| 46 |
),
|
| 47 |
+
version="0.31.5",
|
| 48 |
lifespan=lifespan,
|
| 49 |
)
|
| 50 |
|
|
|
|
| 101 |
def root():
|
| 102 |
return {
|
| 103 |
"name": "BharatGraph API",
|
| 104 |
+
"version": "0.31.5",
|
| 105 |
"status": "running",
|
| 106 |
"docs": "/docs",
|
| 107 |
"health": "/health",
|
|
|
|
| 122 |
return HealthResponse(
|
| 123 |
status="ok" if connected else "degraded",
|
| 124 |
neo4j_connected=connected,
|
| 125 |
+
version="0.31.5",
|
| 126 |
generated_at=datetime.now().isoformat(),
|
| 127 |
)
|
| 128 |
|
config/settings.py
CHANGED
|
@@ -6,7 +6,7 @@ load_dotenv()
|
|
| 6 |
|
| 7 |
# Project Info
|
| 8 |
PROJECT_NAME = "BharatGraph"
|
| 9 |
-
VERSION = "0.31.
|
| 10 |
DESCRIPTION = "AI-powered public transparency platform for India"
|
| 11 |
|
| 12 |
# Database
|
|
|
|
| 6 |
|
| 7 |
# Project Info
|
| 8 |
PROJECT_NAME = "BharatGraph"
|
| 9 |
+
VERSION = "0.31.5" # NEW-A7 FIX: bumped from 0.31.0 after 3 bug sprints
|
| 10 |
DESCRIPTION = "AI-powered public transparency platform for India"
|
| 11 |
|
| 12 |
# Database
|