Bump version to 0.1.1

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 <noreply@anthropic.com>
This commit is contained in:
2025-12-06 19:55:56 +01:00
co-authored by Claude
parent 90f57bd7d7
commit ab8e3b1566
2 changed files with 6 additions and 3 deletions
+5 -2
View File
@@ -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
+1 -1
View File
@@ -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")