diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7d9b009..30b6d45 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.10.0" + ".": "0.10.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7864a13..392cd3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.1](https://github.com/shigechika/mcp-stdio/compare/v0.10.0...v0.10.1) (2026-05-02) + + +### Bug Fixes + +* **oauth:** support path-scoped issuers in RFC 8414 discovery (Keycloak, Cognito) ([#54](https://github.com/shigechika/mcp-stdio/issues/54)) ([1916ec0](https://github.com/shigechika/mcp-stdio/commit/1916ec040cfc90fc1bcc20011f36344f0ab37a68)) + ## [0.10.0](https://github.com/shigechika/mcp-stdio/compare/v0.9.0...v0.10.0) (2026-05-02) diff --git a/src/mcp_stdio/__init__.py b/src/mcp_stdio/__init__.py index b62bbee..cc6c4fa 100644 --- a/src/mcp_stdio/__init__.py +++ b/src/mcp_stdio/__init__.py @@ -1,5 +1,5 @@ """mcp-stdio: Stdio-to-HTTP relay for MCP servers.""" # x-release-please-start-version -__version__ = "0.10.0" +__version__ = "0.10.1" # x-release-please-end