diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 45ca42f0..b68e7803 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.5" + ".": "0.0.6" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cc7e572f..96811a7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.0.6](https://github.com/MCP-Mux/mcp-mux/compare/v0.0.5...v0.0.6) (2026-02-06) + + +### Features + +* add autostart and system tray functionality ([#38](https://github.com/MCP-Mux/mcp-mux/issues/38)) ([cc99fcf](https://github.com/MCP-Mux/mcp-mux/commit/cc99fcf412f24f48edba12b8f0359fa71b5247c6)) +* implement Tauri updater functionality ([#36](https://github.com/MCP-Mux/mcp-mux/issues/36)) ([d355c68](https://github.com/MCP-Mux/mcp-mux/commit/d355c68a4b33901adb7f9be8c0765252f8c3577f)) + ## [0.0.5](https://github.com/MCP-Mux/mcp-mux/compare/v0.0.4...v0.0.5) (2026-02-05) diff --git a/Cargo.toml b/Cargo.toml index 80f5cb93..072449e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ ] [workspace.package] -version = "0.0.5" +version = "0.0.6" edition = "2021" license = "GPL-3.0-or-later" repository = "https://github.com/mcpmux/mcpmux" diff --git a/apps/desktop/src-tauri/Cargo.toml b/apps/desktop/src-tauri/Cargo.toml index c4696e54..ca0d082d 100644 --- a/apps/desktop/src-tauri/Cargo.toml +++ b/apps/desktop/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mcpmux" -version = "0.0.5" +version = "0.0.6" edition.workspace = true publish = false description = "McpMux - Centralized MCP Server Management" diff --git a/apps/desktop/src-tauri/tauri.conf.json b/apps/desktop/src-tauri/tauri.conf.json index a7f42eee..c57ae5a0 100644 --- a/apps/desktop/src-tauri/tauri.conf.json +++ b/apps/desktop/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "McpMux", - "version": "0.0.5", + "version": "0.0.6", "identifier": "com.mcpmux.desktop", "build": { "beforeDevCommand": "pnpm dev:web",