fix: sync version to 0.0.3 and correct root license to MIT - #38
Conversation
… MIT - server.ts self-reported 0.0.1, server.json 0.0.2, package.json 0.0.3 (four-way drift) - root package.json license was UNLICENSED while the server + LICENSE file are MIT - align all version strings to the published 0.0.3 and set root license to MIT
|
There was a problem hiding this comment.
Pull request overview
Aligns repository metadata with the already-published @taskade/mcp-server@0.0.3 by removing version drift across the server’s self-reported version, registry manifest, and the monorepo root package metadata, and correcting the root license to match the MIT LICENSE file.
Changes:
- Update
TaskadeMCPServerself-reported version to0.0.3. - Update
packages/server/server.jsonmanifest version fields to0.0.3. - Update root
package.jsonversion to0.0.3and license toMIT.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| packages/server/src/server.ts | Bumps the server’s reported version to 0.0.3 for clients. |
| packages/server/server.json | Synchronizes the MCP registry manifest version fields to 0.0.3. |
| package.json | Updates monorepo root version to 0.0.3 and sets license to MIT. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
✅ Validation & QA — ready to mergeCopilot reviewed and generated no comments. Re-validated against the codebase:
Value-only edits, no logic. Confidence: high · zero regression. Merging. |
What & why
Four-way version drift + an incorrect root license, all verified on
main:packages/server/src/server.ts:16(self-reported to clients)0.0.10.0.3packages/server/server.json(registry manifest, ×2)0.0.20.0.3package.jsonversion0.0.10.0.3package.jsonlicenseUNLICENSEDMITThe published npm package is already
0.0.3; this aligns every other source to it so the server reports the correct version to clients/registries, and fixes theUNLICENSEDroot (the server package +LICENSEfile are MIT).Zero-regression
yarn lintclean.Notes
server.tsversion frompackage.jsonso it can't drift again.