diff --git a/.release-please-manifest.json b/.release-please-manifest.json index df4c7cd73..3f8abaec9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - ".": "3.0.0-beta.13", - "Packages/src/Cli~": "3.0.0-beta.11" + ".": "3.0.0-beta.14", + "Packages/src/Cli~": "3.0.0-beta.12" } diff --git a/Packages/src/CHANGELOG.md b/Packages/src/CHANGELOG.md index 666a88e22..5ece1dcd6 100644 --- a/Packages/src/CHANGELOG.md +++ b/Packages/src/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [3.0.0-beta.14](https://github.com/hatayama/unity-cli-loop/compare/v3.0.0-beta.13...v3.0.0-beta.14) (2026-05-19) + + +### Bug Fixes + +* Busy responses no longer create Unity Console errors ([#1168](https://github.com/hatayama/unity-cli-loop/issues/1168)) ([be7aa80](https://github.com/hatayama/unity-cli-loop/commit/be7aa80d0048374b53170c5df34c54600425cb12)) +* Prevent stale server recovery after Editor restarts ([#1166](https://github.com/hatayama/unity-cli-loop/issues/1166)) ([5b7835d](https://github.com/hatayama/unity-cli-loop/commit/5b7835d43e72d53cfd7997c97a4f9cf15be3f2e4)) +* Unity tool requests no longer overlap during long-running work ([#1164](https://github.com/hatayama/unity-cli-loop/issues/1164)) ([c5a583b](https://github.com/hatayama/unity-cli-loop/commit/c5a583ba457e2c330b8c5150cc101e81b790fb45)) +* Windows CLI uninstall no longer leaves stale commands behind ([#1169](https://github.com/hatayama/unity-cli-loop/issues/1169)) ([62a7c88](https://github.com/hatayama/unity-cli-loop/commit/62a7c887af62e31c02d7d0fefdd204f37f8f070b)) + ## [3.0.0-beta.13](https://github.com/hatayama/unity-cli-loop/compare/v3.0.0-beta.12...v3.0.0-beta.13) (2026-05-17) diff --git a/Packages/src/Cli~/CHANGELOG.md b/Packages/src/Cli~/CHANGELOG.md index b1fc23a12..c657274e2 100644 --- a/Packages/src/Cli~/CHANGELOG.md +++ b/Packages/src/Cli~/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [3.0.0-beta.12](https://github.com/hatayama/unity-cli-loop/compare/cli-v3.0.0-beta.11...cli-v3.0.0-beta.12) (2026-05-19) + + +### Bug Fixes + +* Unity tool requests no longer overlap during long-running work ([#1164](https://github.com/hatayama/unity-cli-loop/issues/1164)) ([c5a583b](https://github.com/hatayama/unity-cli-loop/commit/c5a583ba457e2c330b8c5150cc101e81b790fb45)) +* Windows CLI uninstall no longer leaves stale commands behind ([#1169](https://github.com/hatayama/unity-cli-loop/issues/1169)) ([62a7c88](https://github.com/hatayama/unity-cli-loop/commit/62a7c887af62e31c02d7d0fefdd204f37f8f070b)) + ## [3.0.0-beta.11](https://github.com/hatayama/unity-cli-loop/compare/cli-v3.0.0-beta.10...cli-v3.0.0-beta.11) (2026-05-17) diff --git a/Packages/src/Cli~/contract.json b/Packages/src/Cli~/contract.json index 79b8884bf..5483cc448 100644 --- a/Packages/src/Cli~/contract.json +++ b/Packages/src/Cli~/contract.json @@ -1,4 +1,4 @@ { "schemaVersion": 1, - "cliVersion": "3.0.0-beta.11" + "cliVersion": "3.0.0-beta.12" } diff --git a/Packages/src/Cli~/dist/darwin-amd64/uloop b/Packages/src/Cli~/dist/darwin-amd64/uloop index 253062281..9ca7ba476 100755 Binary files a/Packages/src/Cli~/dist/darwin-amd64/uloop and b/Packages/src/Cli~/dist/darwin-amd64/uloop differ diff --git a/Packages/src/Cli~/dist/darwin-arm64/uloop b/Packages/src/Cli~/dist/darwin-arm64/uloop index c5eb8f2b9..15d7b2df2 100755 Binary files a/Packages/src/Cli~/dist/darwin-arm64/uloop and b/Packages/src/Cli~/dist/darwin-arm64/uloop differ diff --git a/Packages/src/Cli~/dist/windows-amd64/uloop.exe b/Packages/src/Cli~/dist/windows-amd64/uloop.exe index 2d8c1adaa..b1e496877 100755 Binary files a/Packages/src/Cli~/dist/windows-amd64/uloop.exe and b/Packages/src/Cli~/dist/windows-amd64/uloop.exe differ diff --git a/Packages/src/Cli~/internal/tools/default-tools.json b/Packages/src/Cli~/internal/tools/default-tools.json index 9c72aa691..4e3c565c3 100644 --- a/Packages/src/Cli~/internal/tools/default-tools.json +++ b/Packages/src/Cli~/internal/tools/default-tools.json @@ -1,5 +1,5 @@ { - "version": "3.0.0-beta.11", + "version": "3.0.0-beta.12", "tools": [ { "name": "compile", diff --git a/Packages/src/package.json b/Packages/src/package.json index 496ff808a..9822d2c47 100644 --- a/Packages/src/package.json +++ b/Packages/src/package.json @@ -1,6 +1,6 @@ { "name": "io.github.hatayama.uloopmcp", - "version": "3.0.0-beta.13", + "version": "3.0.0-beta.14", "displayName": "Unity CLI Loop", "description": "AI-driven development loop for Unity via CLI.", "unity": "2022.3",