Skip to content

Commit 217221c

Browse files
author
Mohammod Al Amin Ashik
committed
fix: only release desktop app, not library crates
1 parent d9e488d commit 217221c

1 file changed

Lines changed: 24 additions & 1 deletion

File tree

release-plz.toml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,32 @@ commit_parsers = [
6969

7070
# Convert issue/PR references to links
7171
commit_preprocessors = [
72-
{ pattern = "\\(#([0-9]+)\\)", replace = "([#${1}](https://github.com/AiAndMore/mcp-mux/pull/${1}))" },
72+
{ pattern = "\\(#([0-9]+)\\)", replace = "([#${1}](https://github.com/MCP-Mux/mcp-mux/pull/${1}))" },
7373
]
7474

75+
# Only release the main desktop app, not the library crates
7576
[[package]]
7677
name = "mcpmux"
7778
changelog_path = "CHANGELOG.md"
79+
release = true
80+
81+
# Disable release for library crates (they're internal, not published)
82+
[[package]]
83+
name = "mcpmux-core"
84+
release = false
85+
86+
[[package]]
87+
name = "mcpmux-gateway"
88+
release = false
89+
90+
[[package]]
91+
name = "mcpmux-mcp"
92+
release = false
93+
94+
[[package]]
95+
name = "mcpmux-storage"
96+
release = false
97+
98+
[[package]]
99+
name = "tests"
100+
release = false

0 commit comments

Comments
 (0)