From ab8e3b15666258ebcc391a84d7c2f3ed6ad6a699 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Sat, 6 Dec 2025 19:55:56 +0100 Subject: [PATCH] Bump version to 0.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Version increment to mark basic setup completion milestone. Changes: - Updated APP_VERSION to 0.1.1 in src/core/config.py - Released CHANGELOG.md [Unreleased] section as [0.1.1] - Updated version links to use git.schweitz.net repository This version represents the completion of all core infrastructure: - Agent interface and implementations - Responses API with full feature set - Chat Completions wrapper - Comprehensive test coverage (95 tests, 78.95%) - Production-ready architecture 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- CHANGELOG.md | 7 +++++-- src/core/config.py | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d06164a..b7c26a8 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.1.1] - 2025-12-06 + ### Added #### Agent Interface (Phase 1) @@ -113,5 +115,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - CORS middleware - Exception handlers (OpenAI-compatible error format) -[Unreleased]: https://github.com/yourusername/tatlock/compare/v0.1.0...HEAD -[0.1.0]: https://github.com/yourusername/tatlock/releases/tag/v0.1.0 +[Unreleased]: https://git.schweitz.net/jpmschweitzer/tatlock/compare/v0.1.1...main +[0.1.1]: https://git.schweitz.net/jpmschweitzer/tatlock/compare/v0.1.0...v0.1.1 +[0.1.0]: https://git.schweitz.net/jpmschweitzer/tatlock/releases/tag/v0.1.0 diff --git a/src/core/config.py b/src/core/config.py index 9ef727e..2cb7aac 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.1.0" + APP_VERSION: str = "0.1.1" ENVIRONMENT: Environment = Environment.DEVELOPMENT DEBUG: bool = Field(default=False, description="Debug mode")