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

@@ -1,6 +1,6 @@
[tool.poetry]
name = "aitbc-blockchain-node"
version = "0.1.0"
version = "v0.2.2"
description = "AITBC blockchain node service"
authors = ["AITBC Team"]
packages = [

View File

@@ -14,7 +14,7 @@ from fastapi.responses import PlainTextResponse
from aitbc_chain.metrics import metrics_registry
app = FastAPI(title="Mock Coordinator API", version="0.1.0")
app = FastAPI(title="Mock Coordinator API", version="v0.2.2")
SIMULATED_MINERS: List[str] = ["miner-alpha", "miner-beta", "miner-gamma"]
SIMULATED_CLIENTS: List[str] = ["client-labs", "client-trading", "client-research"]

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)

View File

@@ -661,7 +661,7 @@ async def get_blockchain_info(chain_id: str = None) -> Dict[str, Any]:
"genesis_params": genesis_params,
"proposer_id": cfg.proposer_id,
"supported_chains": [c.strip() for c in cfg.supported_chains.split(",") if c.strip()],
"rpc_version": "0.1.0"
"rpc_version": "v0.2.2"
}
metrics_registry.observe("rpc_info_duration_seconds", time.perf_counter() - start)