Skip to content

Commit 1f720df

Browse files
chore(main): release 0.0.2 (#30)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 72181e2 commit 1f720df

5 files changed

Lines changed: 28 additions & 8 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.0.1"
2+
".": "0.0.2"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## [0.0.2](https://github.com/MCP-Mux/mcp-mux/compare/v0.0.1...v0.0.2) (2026-02-05)
4+
5+
6+
### Features
7+
8+
* initial release of McpMux desktop app ([72181e2](https://github.com/MCP-Mux/mcp-mux/commit/72181e2b462f4f70eb586758e8bd029dcb3b7631))

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ members = [
1010
]
1111

1212
[workspace.package]
13-
version = "0.0.1"
13+
version = "0.0.2"
1414
edition = "2021"
1515
license = "GPL-3.0-or-later"
1616
repository = "https://github.com/mcpmux/mcpmux"

apps/desktop/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mcpmux"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition.workspace = true
55
publish = false
66
description = "McpMux - Centralized MCP Server Management"

apps/desktop/src-tauri/tauri.conf.json

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "McpMux",
4-
"version": "0.0.1",
4+
"version": "0.0.2",
55
"identifier": "com.mcpmux.desktop",
66
"build": {
77
"beforeDevCommand": "pnpm dev:web",
@@ -13,7 +13,9 @@
1313
"deep-link": {
1414
"mobile": [],
1515
"desktop": {
16-
"schemes": ["mcpmux"]
16+
"schemes": [
17+
"mcpmux"
18+
]
1719
}
1820
},
1921
"updater": {
@@ -73,7 +75,9 @@
7375
"headerImage": null,
7476
"sidebarImage": null,
7577
"installMode": "currentUser",
76-
"languages": ["English"],
78+
"languages": [
79+
"English"
80+
],
7781
"displayLanguageSelector": false
7882
}
7983
},
@@ -82,11 +86,19 @@
8286
"bundleMediaFramework": false
8387
},
8488
"deb": {
85-
"depends": ["libsecret-1-0", "gnome-keyring", "librsvg2-2"],
89+
"depends": [
90+
"libsecret-1-0",
91+
"gnome-keyring",
92+
"librsvg2-2"
93+
],
8694
"desktopTemplate": "linux/mcpmux.desktop"
8795
},
8896
"rpm": {
89-
"depends": ["libsecret", "gnome-keyring", "librsvg2"]
97+
"depends": [
98+
"libsecret",
99+
"gnome-keyring",
100+
"librsvg2"
101+
]
90102
}
91103
}
92104
}

0 commit comments

Comments
 (0)