chore: bump version to v0.2.2 across all components
All checks were successful
Integration Tests / test-service-integration (push) Successful in 45s
Python Tests / test-python (push) Successful in 59s
Security Scanning / security-scan (push) Successful in 54s

- Update pyproject.toml version from 0.1.0 to v0.2.2
- Update FastAPI app version in blockchain node
- Update mock coordinator API version
- Update RPC version in blockchain info endpoint
This commit is contained in:
aitbc1
2026-03-29 15:32:50 +02:00
parent a774a1807e
commit 1a1d67da9e
4 changed files with 4 additions and 4 deletions

View File

@@ -108,7 +108,7 @@ async def lifespan(app: FastAPI):
def create_app() -> FastAPI:
app = FastAPI(title="AITBC Blockchain Node", version="0.1.0", lifespan=lifespan)
app = FastAPI(title="AITBC Blockchain Node", version="v0.2.2", lifespan=lifespan)
# Middleware (applied in reverse order)
app.add_middleware(RequestLoggingMiddleware)