Skip to content

Commit 8af5f8d

Browse files
gmoonclaude
andcommitted
Bump version to v0.2.2
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 7f11097 commit 8af5f8d

4 files changed

Lines changed: 14 additions & 5 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lattice"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2024"
55
description = "A knowledge coordination protocol for human-agent collaboration"
66
repository = "https://github.com/forkzero/lattice"

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,13 @@ test:
2020
# Alias for consistency with other repos
2121
test-all: test
2222

23-
# Pre-commit gate: fast checks (format + lint)
23+
# Pre-commit gate: format + lint + lattice health
2424
pre-commit: fmt-check lint
25+
@if command -v lattice >/dev/null 2>&1 && lattice health --help 2>&1 | grep -q strict; then \
26+
lattice health --strict --check; \
27+
else \
28+
echo "Note: lattice health skipped (install lattice >=0.2.2 to enable)"; \
29+
fi
2530
@echo "Pre-commit checks passed."
2631

2732
# Pre-push gate: full checks (format + lint + test + build)

tests/help_test.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,12 @@ fn test_help_flag_shows_grouped_output() {
1818
"Expected KNOWLEDGE GRAPH heading in --help output"
1919
);
2020
assert!(
21-
stdout.contains("HEALTH & ANALYSIS:"),
22-
"Expected HEALTH & ANALYSIS heading in --help output"
21+
stdout.contains("ANALYSIS:"),
22+
"Expected ANALYSIS heading in --help output"
23+
);
24+
assert!(
25+
stdout.contains("AUTOMATED CHECKS:"),
26+
"Expected AUTOMATED CHECKS heading in --help output"
2327
);
2428
assert!(
2529
stdout.contains("SETUP:"),

0 commit comments

Comments
 (0)