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