adityamparikh opened a new pull request, #37: URL: https://github.com/apache/solr-mcp/pull/37
## Summary Fixes a bug where the `server.json` package version was incorrectly appending `-SNAPSHOT` suffix when publishing official GA releases to the MCP Registry. ## Problem In `release-publish.yml` line 380, the package version was set to `$VERSION-SNAPSHOT`: ```yaml jq --arg v "$VERSION-SNAPSHOT" '.packages[0].version = $v' server.json.tmp > server.json ``` This is semantically incorrect for production GA releases. ## Fix Changed to use the GA version without `-SNAPSHOT` suffix: ```yaml jq --arg v "$VERSION" '.packages[0].version = $v' server.json.tmp > server.json ``` ## Test plan - [ ] Verify `release-publish.yml` workflow runs successfully - [ ] Verify `server.json` contains correct GA version without `-SNAPSHOT` ## Related This is part of a series of PRs to improve release workflow consistency: - PR #35: Add git-semver-plugin for automated versioning - (Future) Centralize Java version configuration - (Future) Simplify workflow structure 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
