Skip to content

Commit b3dfe1a

Browse files
committed
Release v0.2.39
Automated release commit with version bump from 0.2.38 to 0.2.39
1 parent a14168a commit b3dfe1a

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wonderwhy-er/desktop-commander",
3-
"version": "0.2.38",
3+
"version": "0.2.39",
44
"description": "MCP server for terminal operations and file editing",
55
"mcpName": "io.github.wonderwhy-er/desktop-commander",
66
"license": "MIT",
@@ -53,6 +53,7 @@
5353
"release:dry": "node scripts/publish-release.cjs --dry-run",
5454
"release:mcp": "node scripts/publish-release.cjs --mcp-only",
5555
"release:alpha": "node scripts/publish-release.cjs --npm-only --alpha",
56+
"release:skip-mcp": "node scripts/publish-release.cjs --skip-mcp",
5657
"logs:view": "npm run build && node scripts/view-fuzzy-logs.js",
5758
"logs:analyze": "npm run build && node scripts/analyze-fuzzy-logs.js",
5859
"logs:clear": "npm run build && node scripts/clear-fuzzy-logs.js",

scripts/publish-release.cjs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -428,15 +428,14 @@ function checkMcpTokenExpiration() {
428428
printInfo('Checking MCP Registry token validity...');
429429

430430
try {
431-
// mcp-publisher stores token in ~/.mcp_publisher_token
432431
const homeDir = process.env.HOME || process.env.USERPROFILE;
433-
const tokenPath = path.join(homeDir, '.mcp_publisher_token');
434-
432+
const tokenPath = path.join(homeDir, '.config', 'mcp-publisher', 'token.json');
433+
435434
if (!fs.existsSync(tokenPath)) {
436435
printError('MCP Registry token not found. Please run: mcp-publisher login github');
437436
return false;
438437
}
439-
438+
440439
const authData = JSON.parse(fs.readFileSync(tokenPath, 'utf8'));
441440
const token = authData.token;
442441

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
"url": "https://github.com/wonderwhy-er/DesktopCommanderMCP",
88
"source": "github"
99
},
10-
"version": "0.2.38",
10+
"version": "0.2.39",
1111
"packages": [
1212
{
1313
"registryType": "npm",
1414
"registryBaseUrl": "https://registry.npmjs.org",
1515
"identifier": "@wonderwhy-er/desktop-commander",
16-
"version": "0.2.38",
16+
"version": "0.2.39",
1717
"transport": {
1818
"type": "stdio"
1919
}

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.2.38';
1+
export const VERSION = '0.2.39';

0 commit comments

Comments
 (0)