swap hive-claude back to the published 0.1.1 release now that it's out

This commit is contained in:
damocles 2026-09-09 23:44:53 +02:00
commit 1ad7145cc5
4 changed files with 15 additions and 11 deletions

View file

@ -414,7 +414,10 @@ mod tests {
fn reserve_does_not_cross_block_different_names() {
let state = State::new(PathBuf::from("/dev/null"));
assert!(state.reserve("a"));
assert!(state.reserve("b"), "unrelated names must not block each other");
assert!(
state.reserve("b"),
"unrelated names must not block each other"
);
}
#[test]