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")