diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 58e625c9c..da71b49d8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - "Packages/src": "3.0.0-beta.1" + "Packages/src": "3.0.0-beta.2" } diff --git a/Packages/src/CHANGELOG.md b/Packages/src/CHANGELOG.md index 53cf0c11e..3ae9c1f09 100644 --- a/Packages/src/CHANGELOG.md +++ b/Packages/src/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [3.0.0-beta.2](https://github.com/hatayama/unity-cli-loop/compare/v3.0.0-beta.1...v3.0.0-beta.2) (2026-05-08) + + +### Features + +* Git Bash can install and complete uloop on Windows ([#1055](https://github.com/hatayama/unity-cli-loop/issues/1055)) ([7f7c78d](https://github.com/hatayama/unity-cli-loop/commit/7f7c78dddc67a4fbc092aed47fb88864b2df1d3a)) +* Improve native CLI maintainability and local validation ([#1042](https://github.com/hatayama/unity-cli-loop/issues/1042)) ([9ab932b](https://github.com/hatayama/unity-cli-loop/commit/9ab932b9c1e104c69682b298c687ec4c2c83efc0)) +* Make Unity tools easier to extend and maintain ([#1063](https://github.com/hatayama/unity-cli-loop/issues/1063)) ([c50f54c](https://github.com/hatayama/unity-cli-loop/commit/c50f54c3afe7cb94985c26eb6eaec910f1ae2cce)) +* Setup updates the dispatcher only when projects require it ([#1053](https://github.com/hatayama/unity-cli-loop/issues/1053)) ([20aab00](https://github.com/hatayama/unity-cli-loop/commit/20aab004b6a360573416ddf4648cd0728010aa8d)) +* Windows users can run terminal-driven E2E checks ([#1054](https://github.com/hatayama/unity-cli-loop/issues/1054)) ([8648984](https://github.com/hatayama/unity-cli-loop/commit/864898472e25bdd485b5f91c481485848ffac441)) + + +### Bug Fixes + +* Improve code execution responsiveness after Unity recompiles ([#1070](https://github.com/hatayama/unity-cli-loop/issues/1070)) ([7b972b4](https://github.com/hatayama/unity-cli-loop/commit/7b972b4cc9c40ea10e31f7d808d761fe6a9f6b3f)) +* Settings no longer shows obsolete connected client details ([#1060](https://github.com/hatayama/unity-cli-loop/issues/1060)) ([b66790f](https://github.com/hatayama/unity-cli-loop/commit/b66790fb3b2bc89512c8cb595a2698f5bfc7d68b)) + ## [3.0.0-beta.1](https://github.com/hatayama/unity-cli-loop/compare/v3.0.0-beta.0...v3.0.0-beta.1) (2026-05-03) diff --git a/Packages/src/Cli~/Core~/contract.json b/Packages/src/Cli~/Core~/contract.json index 323911af2..5ffa01d65 100644 --- a/Packages/src/Cli~/Core~/contract.json +++ b/Packages/src/Cli~/Core~/contract.json @@ -1,6 +1,6 @@ { "schemaVersion": 1, - "coreVersion": "3.0.0-beta.1", + "coreVersion": "3.0.0-beta.2", "minimumRequiredDispatcherVersion": "3.0.0-beta.1", "dispatcherVersionEnv": "ULOOP_DISPATCHER_VERSION", "requiredDispatcherVersionFlag": "--required-dispatcher-version" diff --git a/Packages/src/Cli~/Core~/internal/presentation/cli/default-tools.json b/Packages/src/Cli~/Core~/internal/presentation/cli/default-tools.json index 45845fa86..45a5ad626 100644 --- a/Packages/src/Cli~/Core~/internal/presentation/cli/default-tools.json +++ b/Packages/src/Cli~/Core~/internal/presentation/cli/default-tools.json @@ -1,5 +1,5 @@ { - "version": "3.0.0-beta.1", + "version": "3.0.0-beta.2", "tools": [ { "name": "compile", diff --git a/Packages/src/Cli~/Dispatcher~/contract.json b/Packages/src/Cli~/Dispatcher~/contract.json index 3980b1fd8..8a1b9926c 100644 --- a/Packages/src/Cli~/Dispatcher~/contract.json +++ b/Packages/src/Cli~/Dispatcher~/contract.json @@ -1,5 +1,5 @@ { "schemaVersion": 1, - "dispatcherVersion": "3.0.0-beta.1", + "dispatcherVersion": "3.0.0-beta.2", "dispatcherVersionEnv": "ULOOP_DISPATCHER_VERSION" } diff --git a/Packages/src/Editor/Application/Config/UnityCliLoopVersion.cs b/Packages/src/Editor/Application/Config/UnityCliLoopVersion.cs index 4c008912f..485b3579a 100644 --- a/Packages/src/Editor/Application/Config/UnityCliLoopVersion.cs +++ b/Packages/src/Editor/Application/Config/UnityCliLoopVersion.cs @@ -6,6 +6,6 @@ namespace io.github.hatayama.UnityCliLoop.Application /// public static class UnityCliLoopVersion { - public const string VERSION = "3.0.0-beta.1"; // x-release-please-version + public const string VERSION = "3.0.0-beta.2"; // x-release-please-version } } diff --git a/Packages/src/package.json b/Packages/src/package.json index 1966840b6..fabefa042 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.1", + "version": "3.0.0-beta.2", "displayName": "Unity CLI Loop", "description": "AI-driven development loop for Unity via CLI.", "unity": "2022.3",