diff --git a/CHANGELOG.md b/CHANGELOG.md index 71f4c62..a52fa89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +## v0.38.0 (2025-11-16) + +### Feat + +- add concurrent uploads and --force flag to upload command +- implement RAG evaluation framework with CLI tooling + +### Fix + +- download qrels from BEIR ZIP instead of HuggingFace + +### Refactor + +- migrate asyncio to anyio for consistent structured concurrency +- replace httpx client with NextcloudClient in upload command + +### Perf + +- Eliminate double-fetching in semantic search sampling +- fix vector viz search performance and visual encoding +- make note deletion concurrent in upload --force + ## v0.37.0 (2025-11-16) ### Feat diff --git a/charts/nextcloud-mcp-server/Chart.yaml b/charts/nextcloud-mcp-server/Chart.yaml index 28fd0de..6fa5040 100644 --- a/charts/nextcloud-mcp-server/Chart.yaml +++ b/charts/nextcloud-mcp-server/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: nextcloud-mcp-server description: A Helm chart for Nextcloud MCP Server - enables AI assistants to interact with Nextcloud type: application -version: 0.37.0 -appVersion: "0.37.0" +version: 0.38.0 +appVersion: "0.38.0" keywords: - nextcloud - mcp diff --git a/pyproject.toml b/pyproject.toml index 5bddba9..5926902 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "nextcloud-mcp-server" -version = "0.37.0" +version = "0.38.0" description = "Model Context Protocol (MCP) server for Nextcloud integration - enables AI assistants to interact with Nextcloud data" authors = [ {name = "Chris Coutinho", email = "chris@coutinho.io"} diff --git a/uv.lock b/uv.lock index 50cb660..5fcf181 100644 --- a/uv.lock +++ b/uv.lock @@ -1648,7 +1648,7 @@ wheels = [ [[package]] name = "nextcloud-mcp-server" -version = "0.37.0" +version = "0.38.0" source = { editable = "." } dependencies = [ { name = "aiosqlite" },