Skip to content

Commit 7d3bb67

Browse files
committed
chore: bump version to 0.5.1 and update changelog
Fix release workflow to handle duplicate MCP Registry version on re-runs.
1 parent 51442e9 commit 7d3bb67

4 files changed

Lines changed: 16 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,12 @@ jobs:
120120
run: ./mcp-publisher login github-oidc
121121

122122
- name: Publish to MCP Registry
123-
run: ./mcp-publisher publish
123+
run: |
124+
output=$(./mcp-publisher publish 2>&1)
125+
exit_code=$?
126+
echo "$output"
127+
if [ $exit_code -ne 0 ] && echo "$output" | grep -q "cannot publish duplicate version"; then
128+
echo "Version already published to MCP Registry — skipping (idempotent re-run)"
129+
exit 0
130+
fi
131+
exit $exit_code

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.5.1] - 2026-05-17
9+
10+
### Fixed
11+
- Release workflow: handle duplicate MCP Registry version gracefully on re-runs
12+
813
## [0.5.0] - 2026-05-17
914

1015
### Added

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "openroad-mcp"
7-
version = "0.5.0"
7+
version = "0.5.1"
88
authors = [
99
{name = "Precision Innovations", email="jluar@precisioninno.com"},
1010
]

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)