diff --git a/README.md b/README.md index e29ea754..ea66235c 100644 --- a/README.md +++ b/README.md @@ -861,13 +861,14 @@ From `youtube/upload.py` (HTTP errors from YouTube Data API v3): Dates are merge dates. Older releases are tagged; `git log` is the full record. -### Unreleased — the Flow migration +### v1.2.0 — 2026-09-18 — the Flow migration Flow moved to `flow.google.com` in September 2026 and stopped minting the bearer token the old REST API needed. Everything below is that migration. | Date | Change | |---|---| +| 2026-09-18 | `/health` reports the app's real version again — it had been pinned at `0.2.0` since v0.2.0 while the app said `1.1.0`, because only one of the two literals was ever bumped ([#52](../../pull/52)) | | 2026-09-18 | Omni 1.1 Flash first-frame, first+last and reference modes ported to `batchexecute` ([#48](../../pull/48), [#50](../../pull/50)). Unported capabilities drop from four to three, all on the Veo path | | 2026-09-17 | REST transport removed — the ten `_legacy_*` methods, the `USE_BATCH_RPC` branches, the fingerprint pools and `agent/services/headers.py`; net −1043 lines ([#49](../../pull/49)) | | 2026-09-17 | Migrated image API: variant submit, settled-wave retry, and 2K/4K image export via `SPrCad` ([#42](../../pull/42)) | diff --git a/agent/main.py b/agent/main.py index 9649c807..46f3a2ba 100644 --- a/agent/main.py +++ b/agent/main.py @@ -113,7 +113,7 @@ async def lifespan(app: FastAPI): logger.info("Flow Kit stopped") -app = FastAPI(title="Flow Kit", version="1.1.0", lifespan=lifespan) +app = FastAPI(title="Flow Kit", version="1.2.0", lifespan=lifespan) app.add_middleware( CORSMiddleware, @@ -171,7 +171,7 @@ async def health(): client = get_flow_client() return { "status": "ok", - "version": "0.2.0", + "version": app.version, "extension_connected": client.connected, "ws": client.ws_stats, }