From eba46f7e9b724fb22f0192f2e9fec8f8cc7bd16d Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Sun, 7 Dec 2025 15:44:27 +0100 Subject: [PATCH] chore: bump version to 0.2.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update version across all configuration files and documentation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- CHANGELOG.md | 2 ++ README.md | 2 +- pyproject.toml | 2 +- src/core/config.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd7bc2c..a8ab89b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.5] - 2025-12-07 + ### Added #### Phase 2: The Steward (Two-Tier Architecture) diff --git a/README.md b/README.md index 95ee5ab..2d8d4b7 100644 --- a/README.md +++ b/README.md @@ -388,7 +388,7 @@ For LLM agent development guidelines and architectural decisions, see [AGENTS.md ## Version -Current version: **0.2.0** - PydanticAI Integration with Permanent Tools +Current version: **0.2.5** - Phase 2: The Steward (Two-Tier Architecture) --- diff --git a/pyproject.toml b/pyproject.toml index ba72319..511510e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "tatlock" -version = "0.1.0" +version = "0.2.5" description = "OpenAI-compatible API with Ollama backend" requires-python = ">=3.12" dependencies = [] diff --git a/src/core/config.py b/src/core/config.py index 1dc64a0..c2ecabc 100644 --- a/src/core/config.py +++ b/src/core/config.py @@ -32,7 +32,7 @@ class Config(BaseSettings): # Application APP_NAME: str = "OpenAI-Compatible API" - APP_VERSION: str = "0.2.0" + APP_VERSION: str = "0.2.5" ENVIRONMENT: Environment = Environment.DEVELOPMENT DEBUG: bool = Field(default=False, description="Debug mode")