chore: bump v0.2.1

This commit is contained in:
Timothy Jaeryang Baek 2026-05-20 23:05:58 +04:00
parent 86418bac28
commit f588d8a63f
3 changed files with 14 additions and 2 deletions

View file

@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
## [0.2.1] - 2025-05-20
### Added
- API key authentication for daemon endpoints (`OIKB_API_KEY` env var, Docker secrets `_FILE` supported).
- Configurable fields, format, and query filters for Jira and ServiceNow connectors.
### Changed
- `.oikb.yaml` top-level key renamed from `sync:` to `sources:` (backward compatible).
- `/health` endpoints remain public; `/history` and `/sync` require auth when key is set.
## [0.2.0] - 2025-05-20
### Added

View file

@ -1,6 +1,6 @@
[project]
name = "oikb"
version = "0.2.0"
version = "0.2.1"
description = "Sync anything to Open WebUI Knowledge Bases"
readme = "README.md"
authors = [

View file

@ -38,7 +38,7 @@ async def verify_api_key(
app = FastAPI(
title="oikb",
description="Sync engine for Open WebUI Knowledge Bases. Trigger syncs, check status, and query history.",
version="0.2.0",
version="0.2.1",
)
# Runtime state populated by start_daemon().