From 4a47ce2ba1f81e3271574bdc42a9c47341458133 Mon Sep 17 00:00:00 2001 From: Stefan Steiner Date: Tue, 26 May 2026 03:11:03 -0700 Subject: [PATCH] fix(ci): add release-please version markers to hyperdb-mcp dependency The `hyperdb-api` dependency in `hyperdb-mcp/Cargo.toml` was pinned to `0.1.1` without release-please markers. When release-please bumped the workspace to 0.2.0, cargo couldn't resolve the stale pin. Add the `x-release-please-start-version` / `end` markers and register the file in `release-please-config.json` extra-files so it gets bumped automatically on future releases. --- hyperdb-mcp/Cargo.toml | 4 +++- release-please-config.json | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/hyperdb-mcp/Cargo.toml b/hyperdb-mcp/Cargo.toml index 297df43..8d657a2 100644 --- a/hyperdb-mcp/Cargo.toml +++ b/hyperdb-mcp/Cargo.toml @@ -20,7 +20,9 @@ name = "hyperdb-mcp" path = "src/main.rs" [dependencies] -hyperdb-api = { path = "../hyperdb-api", version = "0.1.1" } +# x-release-please-start-version +hyperdb-api = { path = "../hyperdb-api", version = "=0.1.3" } +# x-release-please-end rmcp = { version = "1.7", features = ["server", "transport-io"] } tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-std", "signal", "time"] } serde = { workspace = true } diff --git a/release-please-config.json b/release-please-config.json index 1e8869c..b071ee7 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -30,6 +30,7 @@ { "type": "toml", "path": "Cargo.toml", "jsonpath": "$.workspace.package.version" }, { "type": "generic", "path": "hyperdb-api-core/Cargo.toml" }, { "type": "generic", "path": "hyperdb-api/Cargo.toml" }, + { "type": "generic", "path": "hyperdb-mcp/Cargo.toml" }, { "type": "json", "path": "hyperdb-mcp/npm/package.json",