Skip to content

Commit b3fc199

Browse files
committed
Bump release to 0.11.0
* In main.yml - reversed a change from last release that did an explicit build, because the prepare script was no longer in package.json * In package.json - replaced prepare script, which will cause automatic build after npm install - set version to 0.11.0 - set versions of inspector-cli, inspector-client, and inspector-server to ^0.11.0 * In package.lock.json - updated versions of inspector, inspector-cli, inspector-client, and inspector-server to ^0.11.0 * In cli/package.json - set version to 0.11.0 - set versions of sdk to 1.10.2 * In client/package.json - set version to 0.11.0 - set versions of sdk to 1.10.2 * In server/package.json - set version to 0.11.0 - set versions of sdk to 1.10.2
1 parent cdab12a commit b3fc199

File tree

6 files changed

+21
-23
lines changed

6 files changed

+21
-23
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ jobs:
5858
# - run: npm ci
5959
- run: npm install --no-package-lock
6060

61-
- run: npm run build
62-
6361
# TODO: Add --provenance once the repo is public
6462
- run: npm run publish-all
6563
env:

cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/inspector-cli",
3-
"version": "0.10.2",
3+
"version": "0.11.0",
44
"description": "CLI for the Model Context Protocol inspector",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",
@@ -21,7 +21,7 @@
2121
},
2222
"devDependencies": {},
2323
"dependencies": {
24-
"@modelcontextprotocol/sdk": "^1.10.0",
24+
"@modelcontextprotocol/sdk": "^1.10.2",
2525
"commander": "^13.1.0",
2626
"spawn-rx": "^5.1.2"
2727
}

client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/inspector-client",
3-
"version": "0.10.2",
3+
"version": "0.11.0",
44
"description": "Client-side application for the Model Context Protocol inspector",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",
@@ -23,7 +23,7 @@
2323
"test:watch": "jest --config jest.config.cjs --watch"
2424
},
2525
"dependencies": {
26-
"@modelcontextprotocol/sdk": "^1.10.0",
26+
"@modelcontextprotocol/sdk": "^1.10.2",
2727
"@radix-ui/react-checkbox": "^1.1.4",
2828
"@radix-ui/react-dialog": "^1.1.3",
2929
"@radix-ui/react-icons": "^1.3.0",

package-lock.json

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

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/inspector",
3-
"version": "0.10.2",
3+
"version": "0.11.0",
44
"description": "Model Context Protocol inspector",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",
@@ -38,9 +38,9 @@
3838
"publish-all": "npm publish --workspaces --access public && npm publish --access public"
3939
},
4040
"dependencies": {
41-
"@modelcontextprotocol/inspector-cli": "^0.10.2",
42-
"@modelcontextprotocol/inspector-client": "^0.10.2",
43-
"@modelcontextprotocol/inspector-server": "^0.10.2",
41+
"@modelcontextprotocol/inspector-cli": "^0.11.0",
42+
"@modelcontextprotocol/inspector-client": "^0.11.0",
43+
"@modelcontextprotocol/inspector-server": "^0.11.0",
4444
"@modelcontextprotocol/sdk": "^1.10.2",
4545
"concurrently": "^9.0.1",
4646
"shell-quote": "^1.8.2",

server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/inspector-server",
3-
"version": "0.10.2",
3+
"version": "0.11.0",
44
"description": "Server-side application for the Model Context Protocol inspector",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",
@@ -27,7 +27,7 @@
2727
"typescript": "^5.6.2"
2828
},
2929
"dependencies": {
30-
"@modelcontextprotocol/sdk": "^1.10.0",
30+
"@modelcontextprotocol/sdk": "^1.10.2",
3131
"cors": "^2.8.5",
3232
"express": "^5.1.0",
3333
"ws": "^8.18.0",

0 commit comments

Comments
 (0)