chore(release): 0.8.1 — treesitter on by default#45
Merged
Conversation
The 0.8.0 release shipped `hew blast` behind the `treesitter` feature gate, but Homebrew and `cargo install hew` produced binaries built with default features (no treesitter), so end users hit a "rebuild with --features treesitter" error when invoking it. - hew-core/Cargo.toml: `default = ["treesitter"]`. - hew/Cargo.toml: `default = ["treesitter"]`. - Workspace version 0.8.0 → 0.8.1. - 22 skill/command markers bumped to 0.8.1. - .claude/ artifacts re-laid via dogfooded `hew init`. - DECISION:treesitter-feature-gating memory superseded — the off-by-default rule was for local dev cold-builds; the shipped artifact should just work. cfg gates remain so `cargo build --no-default-features` still produces a tree-sitter-free build. - CHANGELOG [0.8.1] entry. Verification: - cargo test (default = treesitter): 393+ pass. - cargo test --no-default-features: 363 pass. - cargo build (default): tree-sitter crates present. - cargo build --no-default-features: zero tree-sitter crates. - cargo clippy + fmt clean both feature paths. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
default = [\"treesitter\"]in bothhew-core/Cargo.tomlandhew/Cargo.tomlso shipped binaries (Homebrew, cargo-dist shell installer,cargo install hew) includehew blastout of the box.cargo build --no-default-featuresstrips every tree-sitter crate. cfg gates that compile out the blast subcommand under no-features stay in place.DECISION:treesitter-feature-gatingmemory superseded to reflect the new default.Test plan
cargo build --no-default-features(lean path still compiles).v0.8.1; cargo-dist builds binaries with treesitter included.brew upgrade hew && hew blastworks without rebuilding.🤖 Generated with Claude Code