diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index af55ef0..0ee8c01 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.1" + ".": "0.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c82066..cf5fd6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.3.0](https://github.com/firebolt-db/mcp-server/compare/v0.2.1...v0.3.0) (2025-04-28) + + +### Features + +* add support for text-only content in MCP tools ([#20](https://github.com/firebolt-db/mcp-server/issues/20)) ([c509b6d](https://github.com/firebolt-db/mcp-server/commit/c509b6d704a55f65db486dc265ed25ac9de033d5)) + + +### Dependencies + +* **gomod:** bump the go-deps group with 2 updates ([#18](https://github.com/firebolt-db/mcp-server/issues/18)) ([175ed4b](https://github.com/firebolt-db/mcp-server/commit/175ed4b2b79540ea2055b72d07e7180e20116977)) + ## [0.2.1](https://github.com/firebolt-db/mcp-server/compare/v0.2.0...v0.2.1) (2025-04-17) diff --git a/README.md b/README.md index c260069..92923ce 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ docker run \ --rm \ -e FIREBOLT_MCP_CLIENT_ID=your-client-id \ -e FIREBOLT_MCP_CLIENT_SECRET=your-client-secret \ - ghcr.io/firebolt-db/mcp-server:0.2.1 + ghcr.io/firebolt-db/mcp-server:0.3.0 ``` [//]: # (x-release-please-end) @@ -70,7 +70,7 @@ docker run \ [//]: # (x-release-please-start-version) ```bash # Download the binary for your OS from: -# https://github.com/firebolt-db/mcp-server/releases/tag/v0.2.1 +# https://github.com/firebolt-db/mcp-server/releases/tag/v0.3.0 ./firebolt-mcp-server \ --client-id your-client-id \ @@ -105,7 +105,7 @@ To integrate with Claude Desktop using **Docker**: "--rm", "-e", "FIREBOLT_MCP_CLIENT_ID", "-e", "FIREBOLT_MCP_CLIENT_SECRET", - "ghcr.io/firebolt-db/mcp-server:0.2.1" + "ghcr.io/firebolt-db/mcp-server:0.3.0" ], "env": { "FIREBOLT_MCP_CLIENT_ID": "your-client-id", diff --git a/sonar-project.properties b/sonar-project.properties index 2468f43..ea2f452 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -1,7 +1,7 @@ sonar.organization=firebolt-db sonar.projectKey=firebolt-db_mcp-server sonar.projectName=firebolt-db/mcp-server -sonar.projectVersion=0.2.1 # x-release-please-version +sonar.projectVersion=0.3.0 # x-release-please-version sonar.sources=. sonar.exclusions=**/*_test.go,cmd/docs-scrapper/**,coverage.*