From 3efa40548928e014ea0f560477deea00f7124171 Mon Sep 17 00:00:00 2001 From: lyubomir-bozhinov Date: Thu, 30 Jul 2026 10:19:36 +0300 Subject: [PATCH] release: commitward 0.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Minor rather than patch: no signature moved, but `compile()` behaves differently for every caller. It now merges `anchor_checkpoints()` into the compiled set — last, so a same-named on-disk entry cannot shadow it (#9). Every compiled registry, including an empty one, therefore carries `anchor-gate-integrity`, which watches the gate's own registry and hook files. A caller that compiled N checkpoints gets N+1 back, and a commit touching a registry or hook now always fires at least one checkpoint — including the commit that first adopts a registry. Acknowledge it with a HITL-ACK line like any other fire. That is the point of the change: the registry could not be the sole protector of the registry, so one checkpoint now lives outside it, in the binary. Additive in the same release: `anchor_checkpoints()` is public, so a consumer can inspect the floor rather than trust it. --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1fcd5d8..82c7aca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13,7 +13,7 @@ dependencies = [ [[package]] name = "commitward" -version = "0.2.2" +version = "0.3.0" dependencies = [ "once_cell", "regex", diff --git a/Cargo.toml b/Cargo.toml index d1a9e1c..e95470f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "commitward" -version = "0.2.2" +version = "0.3.0" edition = "2021" description = "Deterministic, fail-open human-sign-off (HITL) gate for high-stakes agentic commits" license = "MIT OR Apache-2.0"