Skip to content

Commit 0b71efb

Browse files
committed
Release v1.4.0-beta.2
1 parent 1977738 commit 0b71efb

6 files changed

Lines changed: 18 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## [v1.4.0-beta.2] - 2025-05-07
4+
- Same as beta 1 but has the latest features from the main release channel
5+
36
## [v1.4.0-beta.1] - 2025-05-05
47
- Added experimental support for incremental builds (requires opt-in)
58

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Configure your MCP client (Windsurf, Cursor, Claude Desktop, etc.) to use the Xc
103103
"command": "mise",
104104
"args": [
105105
"x",
106-
"npm:xcodebuildmcp@1.4.0-beta.1",
106+
"npm:xcodebuildmcp@1.4.0-beta.2-beta.1",
107107
"--",
108108
"xcodebuildmcp"
109109
]
@@ -153,7 +153,7 @@ Example MCP client configuration:
153153
"command": "mise",
154154
"args": [
155155
"x",
156-
"npm:xcodebuildmcp@1.4.0-beta.1",
156+
"npm:xcodebuildmcp@1.4.0-beta.2-beta.1",
157157
"--",
158158
"xcodebuildmcp"
159159
],
@@ -180,14 +180,14 @@ The diagnostic tool is a standalone utility that checks your system configuratio
180180

181181
```bash
182182
# Run the diagnostic tool using mise
183-
mise x npm:xcodebuildmcp@1.4.0-beta.1 -- xcodebuildmcp-diagnostic
183+
mise x npm:xcodebuildmcp@1.4.0-beta.2-beta.1 -- xcodebuildmcp-diagnostic
184184
```
185185

186186
#### Using with npx
187187

188188
```bash
189189
# Run the diagnostic tool using npx
190-
npx xcodebuildmcp@1.4.0-beta.1 xcodebuildmcp-diagnostic
190+
npx xcodebuildmcp@1.4.0-beta.2-beta.1 xcodebuildmcp-diagnostic
191191
```
192192

193193
The diagnostic tool will output comprehensive information about:
@@ -219,7 +219,7 @@ Example MCP client configuration:
219219
"command": "mise",
220220
"args": [
221221
"x",
222-
"npm:xcodebuildmcp@1.4.0-beta.1",
222+
"npm:xcodebuildmcp@1.4.0-beta.2-beta.1",
223223
"--",
224224
"xcodebuildmcp"
225225
],
@@ -244,7 +244,7 @@ Once you have enabled one or more tools or groups of tools all other tools will
244244
"command": "mise",
245245
"args": [
246246
"x",
247-
"npm:xcodebuildmcp@1.3.6",
247+
"npm:xcodebuildmcp@1.4.0-beta.2",
248248
"--",
249249
"xcodebuildmcp"
250250
],

TOOL_OPTIONS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Here is a fully worked example of how to configure Cursor/Windsurf to use specif
195195
"command": "mise",
196196
"args": [
197197
"x",
198-
"npm:xcodebuildmcp@1.3.6",
198+
"npm:xcodebuildmcp@1.4.0-beta.2",
199199
"--",
200200
"xcodebuildmcp"
201201
],

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "xcodebuildmcp",
3-
"version": "1.4.0-beta.1",
3+
"version": "1.4.0-beta.2",
44
"main": "build/index.js",
55
"type": "module",
66
"bin": {

release.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,11 @@ echo "🚀 Pushing to origin..."
9696
run "git push origin $BRANCH --tags"
9797

9898
echo "📦 Creating GitHub release..."
99-
run "gh release create "v$VERSION" --generate-notes -t \"Release v$VERSION\""
99+
if [[ "$NPM_TAG" == "beta" || "$NPM_TAG" == "alpha" || "$NPM_TAG" == "rc" || "$NPM_TAG" == "experimental" ]]; then
100+
run "gh release create "v$VERSION" --generate-notes -t \"Release v$VERSION\" --prerelease"
101+
else
102+
run "gh release create "v$VERSION" --generate-notes -t \"Release v$VERSION\""
103+
fi
100104

101105
# npm publish
102106
echo ""

0 commit comments

Comments
 (0)