Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/claude-code/structured-coding/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0
0.1.1
2 changes: 1 addition & 1 deletion dist/codex/structured-coding/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0
0.1.1
Binary file modified dist/structured-coding-claude-code.zip
Binary file not shown.
Binary file modified dist/structured-coding-codex.zip
Binary file not shown.
3 changes: 2 additions & 1 deletion scripts/test_hook_presets.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ def test_every_preset_coexists_and_any_one_can_be_removed(self):
self.assertEqual(set(json.loads(config.read_bytes())["hooks"]), expected)
report = hooks.doctor(host, self.project)
# A user must be able to tell which release they installed.
self.assertIn("Skill version 0.1.0", report)
declared = (hooks.ROOT / "structured-coding/VERSION").read_text()
self.assertIn(f"Skill version {declared.strip()}", report)
for survivor in survivors:
self.assertIn(survivor, report)
data = self.state(host) / "retained.json"
Expand Down
2 changes: 1 addition & 1 deletion structured-coding/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0
0.1.1
Loading