From f7382b8b50e16ef3afeeacf7bc1698a96b7c3a97 Mon Sep 17 00:00:00 2001 From: MytelligentPRV Date: Sat, 27 Jun 2026 10:27:01 -0700 Subject: [PATCH] chore(packages): reconcile repo version fields to published baseline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Repo HEAD version fields had drifted BELOW what's actually published, so the repo disagreed with reality. For these three, the published artifact's CODE matches repo HEAD (verified by diffing the published artifacts) — only the version string was behind. This aligns them; no republish needed (the published versions already exist and match the code). sdk-python (PyPI wayforth-sdk) 0.8.14 -> 0.9.0 (code already == published 0.9.0) sdk-typescript (npm wayforth-sdk) 0.8.0 -> 0.9.0 (src == published 0.9.0; dist built at publish) create-wayforth-agent (npm) 0.9.0 -> 0.9.1 (code already == published 0.9.1) Version-string only; no code/formatting changes. wayforth-langgraph already in sync (0.9.0). The wayforth-mcp desync is a real exposure handled separately in #62 (it needs an actual republish). The TS-SDK 0.10.0 work is preserved on origin branch chore/consolidate-ts-sdk-source for a future cut. Co-Authored-By: Claude Opus 4.8 (1M context) --- packages/create-wayforth-agent/package.json | 2 +- packages/sdk-python/pyproject.toml | 2 +- packages/sdk-typescript/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/create-wayforth-agent/package.json b/packages/create-wayforth-agent/package.json index 828dcc1..2c9bafb 100644 --- a/packages/create-wayforth-agent/package.json +++ b/packages/create-wayforth-agent/package.json @@ -1,6 +1,6 @@ { "name": "create-wayforth-agent", - "version": "0.9.0", + "version": "0.9.1", "description": "Scaffold a Wayforth agent project in one command — discovery via SDK, execution via proxy", "keywords": ["wayforth", "ai", "agents", "scaffold", "create"], "license": "BSL-1.1", diff --git a/packages/sdk-python/pyproject.toml b/packages/sdk-python/pyproject.toml index 2de4892..e7a1352 100644 --- a/packages/sdk-python/pyproject.toml +++ b/packages/sdk-python/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "wayforth-sdk" -version = "0.8.14" +version = "0.9.0" description = "Python SDK for Wayforth — The API Runtime for AI Agents" readme = "README.md" license = {text = "BSL-1.1"} diff --git a/packages/sdk-typescript/package.json b/packages/sdk-typescript/package.json index c977f3a..92ea551 100644 --- a/packages/sdk-typescript/package.json +++ b/packages/sdk-typescript/package.json @@ -1,6 +1,6 @@ { "name": "wayforth-sdk", - "version": "0.8.0", + "version": "0.9.0", "description": "TypeScript/JavaScript SDK for Wayforth — search engine and payment rail for AI agents", "main": "dist/index.js", "types": "dist/index.d.ts",