From 6fad1dd127fb7271260e646475a9f36812edad3f Mon Sep 17 00:00:00 2001 From: Agent IX Date: Sat, 20 Jun 2026 12:52:40 -0700 Subject: [PATCH] chore: bump quire-rs to v0.10.0 (CR-010 per-value asserts) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Picks up the CR-010 body_extraction assert keys (choices / column_choices / column_patterns) so `quire validate` can enforce per-value constraints — e.g. the SpecReview findings table's Severity column. Verified: the release binary validates column_choices (accepts low/high, rejects out-of-set with a precise [assert] diagnostic); full test suite green. Co-Authored-By: Claude Opus 4.8 (1M context) --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8523134..722ff8e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -969,8 +969,8 @@ dependencies = [ [[package]] name = "quire-rs" -version = "0.9.1" -source = "git+https://github.com/agent-ix/quire-rs?tag=v0.9.1#7592d02e098eaec074532c4b43cc57b1774cece8" +version = "0.10.0" +source = "git+https://github.com/agent-ix/quire-rs?tag=v0.10.0#44e1bdc3f61cbc07351f478e328e4dca48ebefb3" dependencies = [ "ignore", "indexmap", diff --git a/Cargo.toml b/Cargo.toml index 3226e17..31fbc90 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ name = "quire" path = "src/main.rs" [dependencies] -quire-rs = { git = "https://github.com/agent-ix/quire-rs", tag = "v0.9.1" } +quire-rs = { git = "https://github.com/agent-ix/quire-rs", tag = "v0.10.0" } clap = { version = "4", features = ["derive"] } serde = { version = "1", features = ["derive"] } serde_json = "1"