From 4911c94e4848847a75ffdcc1437c407f7b3a3fa3 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Tue, 11 Aug 2026 12:22:47 +0200 Subject: [PATCH] release v1.7.0 Co-Authored-By: Claude --- CHANGELOG.md | 7 +++++++ CLAUDE.md | 2 +- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 962fe23..0562364 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +## [1.7.0] - 2026-08-11 + +### Added +- `check_history` rows name the scheduled task that produced them. `source` names the code, + which cannot distinguish two tasks sharing one executor — so a failure could not be + attributed to the job that caused it. Omitted when there is no task. + ## [1.6.0] - 2026-08-11 ### Fixed diff --git a/CLAUDE.md b/CLAUDE.md index f858917..c529a06 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -9,7 +9,7 @@ It is the homelab's cron. Recurring work belongs here rather than in a systemd t ## Live contract -`http://localhost:8090/openapi.json` — 10 paths, `version: 1.6.0` (verified 2026-08-11). Human +`http://localhost:8090/openapi.json` — 10 paths, `version: 1.7.0` (verified 2026-08-11). Human docs at `/docs`. Generated from running code, so read it instead of inferring routes. **Every route except `/health` requires `Authorization: Bearer $SCHEDULER_API_KEY`.** An diff --git a/pyproject.toml b/pyproject.toml index 509f98a..64e1c7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "the-scheduler" -version = "1.6.0" +version = "1.7.0" description = "System-wide maintenance orchestration - backups, doc mirroring, cleanup, task automation" readme = "README.md" requires-python = ">=3.12"