diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 63c033ca..45ca42f0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.4" + ".": "0.0.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ce1e260f..cc7e572f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.0.5](https://github.com/MCP-Mux/mcp-mux/compare/v0.0.4...v0.0.5) (2026-02-05) + + +### Bug Fixes + +* **oauth:** remove credential caching to enable automatic token refresh ([#33](https://github.com/MCP-Mux/mcp-mux/issues/33)) ([f398cfa](https://github.com/MCP-Mux/mcp-mux/commit/f398cfad7f1f92956f528b5e4640049de77b5ac3)) + ## [0.0.4](https://github.com/MCP-Mux/mcp-mux/compare/v0.0.3...v0.0.4) (2026-02-05) diff --git a/Cargo.toml b/Cargo.toml index c99a186e..80f5cb93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ ] [workspace.package] -version = "0.0.4" +version = "0.0.5" 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 e92d381a..7ad78ec6 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.4" +version = "0.0.5" 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 b6b28ff8..b26d7a16 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.4", + "version": "0.0.5", "identifier": "com.mcpmux.desktop", "build": { "beforeDevCommand": "pnpm dev:web",