From 67b43590ec67d7ae4606bc27a9a777c55e1e775c Mon Sep 17 00:00:00 2001 From: "ds-release-bot[bot]" <116609932+ds-release-bot[bot]@users.noreply.github.com> Date: Mon, 17 Aug 2026 11:21:04 +0000 Subject: [PATCH] chore(main): release mcp-toolsets-runtime 0.6.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 17 +++++++++++++++++ js/mcp-view/package.json | 2 +- js/mcp-view/src/host.ts | 2 +- pyproject.toml | 2 +- uv.lock | 2 +- 6 files changed, 22 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 361b05c..bcd0522 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.7" + ".": "0.6.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 671eb32..484a6e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.6.0](https://github.com/developmentseed/mcp-toolsets-runtime/compare/mcp-toolsets-runtime-v0.5.7...mcp-toolsets-runtime-v0.6.0) (2026-08-17) + + +### ⚠ BREAKING CHANGES + +* **api:** say history is the server's, and share the state object ([#86](https://github.com/developmentseed/mcp-toolsets-runtime/issues/86)) + +### Features + +* **api:** read a thread back with its activities, not just its messages ([#87](https://github.com/developmentseed/mcp-toolsets-runtime/issues/87)) ([d0549ea](https://github.com/developmentseed/mcp-toolsets-runtime/commit/d0549ea96fe5c72e31be5862bb9b6803b73657fd)) +* **api:** say history is the server's, and share the state object ([#86](https://github.com/developmentseed/mcp-toolsets-runtime/issues/86)) ([701d488](https://github.com/developmentseed/mcp-toolsets-runtime/commit/701d488d2f775ff674648874cdc741135b139d80)) + + +### Bug Fixes + +* **state:** teach the two ways to name state apart ([#84](https://github.com/developmentseed/mcp-toolsets-runtime/issues/84)) ([9ea9ef1](https://github.com/developmentseed/mcp-toolsets-runtime/commit/9ea9ef122ce0e6c6caa6cb67fec9a76c3316e65a)) + ## [0.5.7](https://github.com/developmentseed/mcp-toolsets-runtime/compare/mcp-toolsets-runtime-v0.5.6...mcp-toolsets-runtime-v0.5.7) (2026-08-14) diff --git a/js/mcp-view/package.json b/js/mcp-view/package.json index c80bf82..e40a74e 100644 --- a/js/mcp-view/package.json +++ b/js/mcp-view/package.json @@ -1,6 +1,6 @@ { "name": "@developmentseed/mcp-view", - "version": "0.5.7", + "version": "0.6.0", "description": "View-side bridge for MCP Apps UI views: the ui/* postMessage protocol as two tiny functions (onData / sendMessage).", "license": "MIT", "type": "module", diff --git a/js/mcp-view/src/host.ts b/js/mcp-view/src/host.ts index 753609a..7cdb9d4 100644 --- a/js/mcp-view/src/host.ts +++ b/js/mcp-view/src/host.ts @@ -20,7 +20,7 @@ let appPromise: Promise | null = null; let dataHandler: ((payload: unknown) => void) | null = null; let appInfo: { name: string; version: string } = { name: "mcp-view", - version: "0.5.7", // x-release-please-version + version: "0.6.0", // x-release-please-version }; /** diff --git a/pyproject.toml b/pyproject.toml index bddb55d..b54f93e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "mcp-toolsets-runtime" -version = "0.5.7" +version = "0.6.0" description = "Shared runtime for MCP Toolsets: discover LangChain tools, serve them as MCP, plus a CLI and an example chat agent." readme = "README.md" requires-python = ">=3.12,<3.14" diff --git a/uv.lock b/uv.lock index 6b03641..27c048a 100644 --- a/uv.lock +++ b/uv.lock @@ -1064,7 +1064,7 @@ wheels = [ [[package]] name = "mcp-toolsets-runtime" -version = "0.5.7" +version = "0.6.0" source = { editable = "." } dependencies = [ { name = "fastapi" },