From f0d554594b4974da825f415f252045ad62a59932 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 5 Feb 2026 14:12:52 +0800 Subject: [PATCH] fix: add explicit git_only and publish to all package configs --- release-plz.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/release-plz.toml b/release-plz.toml index d80a8476..de49d604 100644 --- a/release-plz.toml +++ b/release-plz.toml @@ -82,6 +82,8 @@ name = "mcpmux" # Path relative to workspace root (not package root) changelog_path = "CHANGELOG.md" release = true +git_only = true +publish = false # Include commits from internal crates in the main changelog changelog_include = ["mcpmux-core", "mcpmux-gateway", "mcpmux-mcp", "mcpmux-storage"] @@ -89,19 +91,29 @@ changelog_include = ["mcpmux-core", "mcpmux-gateway", "mcpmux-mcp", "mcpmux-stor [[package]] name = "mcpmux-core" release = false +git_only = true +publish = false [[package]] name = "mcpmux-gateway" release = false +git_only = true +publish = false [[package]] name = "mcpmux-mcp" release = false +git_only = true +publish = false [[package]] name = "mcpmux-storage" release = false +git_only = true +publish = false [[package]] name = "tests" release = false +git_only = true +publish = false