From 6d3419a3ea43cfd95391d2ef3b59ef58d2bf557d Mon Sep 17 00:00:00 2001 From: blazickjp Date: Thu, 5 Jun 2025 18:45:30 -0700 Subject: [PATCH] Version bump and publish --- pyproject.toml | 2 +- src/arxiv_mcp_server/config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b477b6f..b8c121e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "arxiv-mcp-server" -version = "0.2.10" +version = "0.2.11" description = "A flexible arXiv search and analysis service with MCP protocol support" readme = "README.md" requires-python = ">=3.11" diff --git a/src/arxiv_mcp_server/config.py b/src/arxiv_mcp_server/config.py index 26accba..9e0a23a 100644 --- a/src/arxiv_mcp_server/config.py +++ b/src/arxiv_mcp_server/config.py @@ -12,7 +12,7 @@ class Settings(BaseSettings): """Server configuration settings.""" APP_NAME: str = "arxiv-mcp-server" - APP_VERSION: str = "0.2.10" + APP_VERSION: str = "0.2.11" MAX_RESULTS: int = 50 BATCH_SIZE: int = 20 REQUEST_TIMEOUT: int = 60