Conversation
… README - Update README.md.in to use __VERSION__ placeholder for MCPB download link - Extend prepare-release.sh to replace __VERSION__ with actual version The MCPB download link was pointing to non-existent 'gitlab-mcp-latest.mcpb'. Now uses versioned format 'gitlab-mcp-6.44.0.mcpb' matching the docs site. Fixes #204
There was a problem hiding this comment.
Pull request overview
This PR fixes a broken MCPB download link in the README by replacing the hardcoded 'latest' URL with a versioned placeholder that gets replaced during the release process.
Changes:
- Updated
README.md.into use__VERSION__placeholder instead of hardcoded 'latest' in the MCPB download link - Extended
scripts/prepare-release.shto replace__VERSION__placeholder with the actual version number during release preparation
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
README.md.in |
Changed MCPB download link from gitlab-mcp-latest.mcpb to gitlab-mcp-__VERSION__.mcpb |
scripts/prepare-release.sh |
Added __VERSION__ placeholder replacement to the sed command that processes README.md.in |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
sw-release-bot bot
pushed a commit
that referenced
this pull request
Jan 25, 2026
## [6.45.0](v6.44.0...v6.45.0) (2026-01-25) ### Features * **logging:** Implement condensed access log format with request stack aggregation ([#196](#196)) ([8871fad](8871fad)), closes [#194](#194) ### Bug Fixes * **docs:** replace hardcoded 'latest' MCPB link with versioned URL in README ([#206](#206)) ([a0266a4](a0266a4)), closes [#204](#204)
|
🎉 This PR is included in version 6.45.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
__VERSION__placeholder for MCPB download link__VERSION__with actual version during releaseProblem
The MCPB download link in README was pointing to non-existent
gitlab-mcp-latest.mcpb. Now uses versioned formatgitlab-mcp-6.44.0.mcpbmatching the docs site.Test plan
./scripts/prepare-release.sh 6.44.0grep "mcpb" README.mdshows versioned linkFixes #204