Skip to content

Commit 9283621

Browse files
committed
chore(mcp): bump version to 0.1.1
1 parent 5965ecf commit 9283621

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,10 @@ CI publishes via npm OIDC trusted publishing — no tokens or secrets needed.
124124

125125
```bash
126126
cd mcp
127-
pnpm version patch # or minor / major
127+
pnpm version patch # or minor|major, or manually bump version in package.json
128+
git add package.json
129+
git commit -m "chore(mcp): bump version to X.Y.Z"
130+
git tag github-tracker-mcp@X.Y.Z # The tag _must_ match the github-tracker-mcp@X.Y.Z pattern.
128131
git push upstream main --follow-tags
129132
```
130133

mcp/package.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
{
22
"name": "github-tracker-mcp",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "MCP server for GitHub Tracker — serves dashboard data to AI clients",
55
"type": "module",
66
"bin": {
77
"github-tracker-mcp": "./dist/index.js"
88
},
9-
"files": ["dist", "README.md"],
9+
"files": [
10+
"dist",
11+
"README.md"
12+
],
1013
"scripts": {
1114
"build": "tsup",
1215
"typecheck": "tsc --build",
@@ -15,7 +18,12 @@
1518
"test": "vitest run",
1619
"prepublishOnly": "pnpm run build"
1720
},
18-
"keywords": ["mcp", "github", "dashboard", "model-context-protocol"],
21+
"keywords": [
22+
"mcp",
23+
"github",
24+
"dashboard",
25+
"model-context-protocol"
26+
],
1927
"license": "MIT",
2028
"repository": {
2129
"type": "git",

0 commit comments

Comments
 (0)