Skip to content

Commit 99f38e2

Browse files
PR prep
1 parent 9032c58 commit 99f38e2

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

UnityMcpBridge/Editor/Helpers/ServerInstaller.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public static class ServerInstaller
1111
{
1212
private const string RootFolder = "UnityMCP";
1313
private const string ServerFolder = "UnityMcpServer";
14-
private const string BranchName = "feature/install-overhaul";
14+
private const string BranchName = "master";
1515
private const string GitUrl = "https://github.com/justinpbarnett/unity-mcp.git";
1616
private const string PyprojectUrl =
1717
"https://raw.githubusercontent.com/justinpbarnett/unity-mcp/refs/heads/"
@@ -46,7 +46,6 @@ public static void EnsureServerInstalled()
4646

4747
if (IsNewerVersion(latestVersion, installedVersion))
4848
{
49-
Debug.Log($"is newer version");
5049
UpdateServer(saveLocation);
5150
}
5251
else { }
@@ -164,7 +163,6 @@ private static string GetLatestVersion()
164163
/// </summary>
165164
private static void UpdateServer(string location)
166165
{
167-
Debug.Log("updating server");
168166
RunCommand("git", $"pull origin {BranchName}", workingDirectory: location);
169167
}
170168

UnityMcpServer/src/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "UnityMcpServer"
3-
version = "2.0.1"
3+
version = "2.0.0"
44
description = "Unity MCP Server: A Unity package for Unity Editor integration via the Model Context Protocol (MCP)."
55
readme = "README.md"
66
requires-python = ">=3.12"

0 commit comments

Comments
 (0)