diff --git a/CHANGELOG.md b/CHANGELOG.md index a281426..b4244ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to Library Desk will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.4.8] - 2025-12-25 + +### Added + +- **Paperless Orphan Cleanup** - `POST /maintenance/cleanup/paperless` endpoint + - Detects documents deleted from Paperless but still indexed in Library Desk + - Removes orphaned vectors and graph nodes + - Supports `dry_run=true` for preview mode + ## [1.4.7] - 2025-12-25 ### Fixed diff --git a/pyproject.toml b/pyproject.toml index 97ce1c2..44df60a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "library-desk" -version = "1.4.7" +version = "1.4.8" description = "Coordination service for The Library system - HybridRAG queries, document ingestion, entity extraction, and knowledge consolidation" readme = "README.md" requires-python = ">=3.12"