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