uloop-cli 0.48.0 → 0.48.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uloop-cli",
3
- "version": "0.48.0",
3
+ "version": "0.48.2",
4
4
  "//version": "x-release-please-version",
5
5
  "description": "CLI tool for Unity Editor communication via uLoopMCP",
6
6
  "main": "dist/cli.bundle.cjs",
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.48.0",
2
+ "version": "0.48.2",
3
3
  "tools": [
4
4
  {
5
5
  "name": "compile",
@@ -111,7 +111,7 @@ function printVersionWarning(cliVersion: string, serverVersion: string): void {
111
111
  * Check server version from response and print warning if mismatched.
112
112
  */
113
113
  function checkServerVersion(result: Record<string, unknown>): void {
114
- const serverVersion = result['ULoopServerVersion'] as string | undefined;
114
+ const serverVersion = result['Ver'] as string | undefined;
115
115
  if (serverVersion && serverVersion !== VERSION) {
116
116
  printVersionWarning(VERSION, serverVersion);
117
117
  }
package/src/version.ts CHANGED
@@ -4,4 +4,4 @@
4
4
  * This file exists to avoid bundling the entire package.json into the CLI bundle.
5
5
  * This version is automatically updated by release-please.
6
6
  */
7
- export const VERSION = '0.48.0'; // x-release-please-version
7
+ export const VERSION = '0.48.2'; // x-release-please-version