From 1618d9b5769bf3782574008a46e09bfc5d3b3eb7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 11:10:03 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 4 ++-- plugins/unity-devtools/.claude-plugin/plugin.json | 2 +- plugins/unity-devtools/.codex-plugin/mcp.json | 2 +- plugins/unity-devtools/.codex-plugin/plugin.json | 2 +- plugins/unity-devtools/.mcp.json | 2 +- plugins/unity-devtools/CHANGELOG.md | 12 ++++++++++++ plugins/unity-devtools/mcp/CHANGELOG.md | 12 ++++++++++++ plugins/unity-devtools/mcp/UnityDevtools.Mcp.csproj | 2 +- plugins/unity-devtools/mcp/package.json | 2 +- plugins/unity-devtools/package.json | 2 +- 10 files changed, 33 insertions(+), 9 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ca851ae..bb505d2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { "plugins/coherent-gameface": "0.3.0", "plugins/coherent-gameface/mcp": "0.3.0", - "plugins/unity-devtools": "0.3.0", - "plugins/unity-devtools/mcp": "0.3.0" + "plugins/unity-devtools": "0.4.0", + "plugins/unity-devtools/mcp": "0.4.0" } diff --git a/plugins/unity-devtools/.claude-plugin/plugin.json b/plugins/unity-devtools/.claude-plugin/plugin.json index 4a0ef0f..8ba57ce 100644 --- a/plugins/unity-devtools/.claude-plugin/plugin.json +++ b/plugins/unity-devtools/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "unity-devtools", - "version": "0.3.0", + "version": "0.4.0", "description": "Drive a running Unity Mono development build from your coding agent (Claude Code, Codex CLI): ships the unity-devtools-mcp server (process discovery, live type reflection, C# expression evaluation, and ECS entity/component/buffer read-write over the Mono Soft Debugger protocol, no code injection), plus skills.", "author": { "name": "Morgan Touverey Quilling" diff --git a/plugins/unity-devtools/.codex-plugin/mcp.json b/plugins/unity-devtools/.codex-plugin/mcp.json index 0b63b1a..c778edd 100644 --- a/plugins/unity-devtools/.codex-plugin/mcp.json +++ b/plugins/unity-devtools/.codex-plugin/mcp.json @@ -6,7 +6,7 @@ "dnx", "UnityDevtools.Mcp", "--version", - "0.3.0", + "0.4.0", "--yes" ], "cwd": "." diff --git a/plugins/unity-devtools/.codex-plugin/plugin.json b/plugins/unity-devtools/.codex-plugin/plugin.json index 41b5df4..c3f95f7 100644 --- a/plugins/unity-devtools/.codex-plugin/plugin.json +++ b/plugins/unity-devtools/.codex-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "unity-devtools", - "version": "0.3.0", + "version": "0.4.0", "description": "Drive a running Unity Mono development build from your coding agent (Claude Code, Codex CLI): ships the unity-devtools-mcp server (process discovery, live type reflection, C# expression evaluation, and ECS entity/component/buffer read-write over the Mono Soft Debugger protocol, no code injection), plus skills.", "author": { "name": "Morgan Touverey Quilling" diff --git a/plugins/unity-devtools/.mcp.json b/plugins/unity-devtools/.mcp.json index 6965157..526940c 100644 --- a/plugins/unity-devtools/.mcp.json +++ b/plugins/unity-devtools/.mcp.json @@ -6,7 +6,7 @@ "dnx", "UnityDevtools.Mcp", "--version", - "0.3.0", + "0.4.0", "--yes" ], "env": { diff --git a/plugins/unity-devtools/CHANGELOG.md b/plugins/unity-devtools/CHANGELOG.md index 3d3af04..079dcf6 100644 --- a/plugins/unity-devtools/CHANGELOG.md +++ b/plugins/unity-devtools/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.4.0](https://github.com/CitiesSkylinesModding/agents-plugins/compare/unity-devtools-v0.3.0...unity-devtools-v0.4.0) (2026-07-21) + + +### Features + +* **unity-devtools:** add source-level debugging toolset ([26ca77e](https://github.com/CitiesSkylinesModding/agents-plugins/commit/26ca77e85a8456d355c96262f4abfcc109b9bb08)) + + +### Bug Fixes + +* **unity-devtools-mcp:** guarantee the server dies with its client so MCP reconnects never strand a stale instance ([7afff80](https://github.com/CitiesSkylinesModding/agents-plugins/commit/7afff8024666f89cfb1ef9bc97e483016ddfe30e)) + ## [0.3.0](https://github.com/CitiesSkylinesModding/agents-plugins/compare/unity-devtools-v0.2.0...unity-devtools-v0.3.0) (2026-07-20) diff --git a/plugins/unity-devtools/mcp/CHANGELOG.md b/plugins/unity-devtools/mcp/CHANGELOG.md index 66e28e7..60a4769 100644 --- a/plugins/unity-devtools/mcp/CHANGELOG.md +++ b/plugins/unity-devtools/mcp/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.4.0](https://github.com/CitiesSkylinesModding/agents-plugins/compare/unity-devtools-mcp-v0.3.0...unity-devtools-mcp-v0.4.0) (2026-07-21) + + +### Features + +* **unity-devtools:** add source-level debugging toolset ([26ca77e](https://github.com/CitiesSkylinesModding/agents-plugins/commit/26ca77e85a8456d355c96262f4abfcc109b9bb08)) + + +### Bug Fixes + +* **unity-devtools-mcp:** guarantee the server dies with its client so MCP reconnects never strand a stale instance ([7afff80](https://github.com/CitiesSkylinesModding/agents-plugins/commit/7afff8024666f89cfb1ef9bc97e483016ddfe30e)) + ## [0.3.0](https://github.com/CitiesSkylinesModding/agents-plugins/compare/unity-devtools-mcp-v0.2.0...unity-devtools-mcp-v0.3.0) (2026-07-20) diff --git a/plugins/unity-devtools/mcp/UnityDevtools.Mcp.csproj b/plugins/unity-devtools/mcp/UnityDevtools.Mcp.csproj index a69514a..71444dc 100644 --- a/plugins/unity-devtools/mcp/UnityDevtools.Mcp.csproj +++ b/plugins/unity-devtools/mcp/UnityDevtools.Mcp.csproj @@ -8,7 +8,7 @@ Exe - 0.3.0 + 0.4.0 net10.0 enable diff --git a/plugins/unity-devtools/mcp/package.json b/plugins/unity-devtools/mcp/package.json index 27c005c..1bbca23 100644 --- a/plugins/unity-devtools/mcp/package.json +++ b/plugins/unity-devtools/mcp/package.json @@ -1,6 +1,6 @@ { "name": "unity-devtools-mcp", - "version": "0.3.0", + "version": "0.4.0", "private": true, "description": "release-please version anchor for the unity-devtools MCP server; the csproj is synced from this via extra-files. Not a workspace package, never published.", "license": "MIT" diff --git a/plugins/unity-devtools/package.json b/plugins/unity-devtools/package.json index c8fa44f..e20273a 100644 --- a/plugins/unity-devtools/package.json +++ b/plugins/unity-devtools/package.json @@ -1,6 +1,6 @@ { "name": "unity-devtools", - "version": "0.3.0", + "version": "0.4.0", "private": true, "description": "release-please version anchor for the unity-devtools plugin; the plugin manifests are synced from this version via extra-files. Not a workspace package, never published.", "license": "MIT"