From 6a8b4772c975d968b169991f6f0243278576fd7c Mon Sep 17 00:00:00 2001 From: Fahad Date: Mon, 9 Jun 2025 05:23:33 +0400 Subject: [PATCH] chore: bump version to 2.4.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update version from 2.4.0 to 2.4.1 - Update date to 2025-06-09 - Update tests to match new version This release fixes the output token truncation issue (#1) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- config.py | 4 ++-- tests/test_config.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config.py b/config.py index 4ec7009..bd13be8 100644 --- a/config.py +++ b/config.py @@ -3,8 +3,8 @@ Configuration and constants for Gemini MCP Server """ # Version and metadata -__version__ = "2.4.0" -__updated__ = "2025-06-08" +__version__ = "2.4.1" +__updated__ = "2025-06-09" __author__ = "Fahad Gilani" # Model configuration diff --git a/tests/test_config.py b/tests/test_config.py index fbcaa16..25c633f 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -13,9 +13,9 @@ class TestConfig: def test_version_info(self): """Test version information""" - assert __version__ == "2.4.0" + assert __version__ == "2.4.1" assert __author__ == "Fahad Gilani" - assert __updated__ == "2025-06-08" + assert __updated__ == "2025-06-09" def test_model_config(self): """Test model configuration"""