Releases#25
Merged
buffrr merged 4 commits intospacesprotocol:mainfrom Apr 16, 2026
Merged
Conversation
- Bump version 0.0.12 -> 0.1.0 and flesh out Cargo.toml metadata (keywords, categories, rust-version, docs.rs config, exclude). - Seed CHANGELOG.md using the Keep a Changelog format. - Document the hash-idx feature in README. - Expand CI to cover no_std, hash-idx, wasm check, fmt, clippy, doc, and MSRV 1.75. - Adopt Conventional Commits via commitlint workflow. - Add release-plz workflow + config for automated release PRs and crates.io publishing.
Clean up 86 clippy warnings to run `cargo clippy -- -D warnings` cleanly against `--all-features` and `--all-targets`. Changes are mechanical (needless_return, unnecessary_cast, assign_op, clone_on_copy, needless_range_loop, matches macro, etc.) except: - fix(node): `Node::mem_size` used `size_of_val(&self)` which returned the size of the reference (a pointer), not of the node. Switch to `size_of_val(self)` so the reported size is accurate. - feat(fs): add a default `StorageBackend::is_empty` method alongside `len`, satisfying clippy::len_without_is_empty. - Scope `#[allow(clippy::borrowed_box)]` to the three spots where callers hold `Arc<Box<dyn StorageBackend>>` and we can't drop the `Box` without forcing extra manual derefs at call sites.
Fresh transitive resolution now pulls deps that require edition2024 support (Cargo 1.85+), so the 1.75 claim was already inaccurate for downstream consumers. Bump edition to 2024 and MSRV to 1.85 to match what actually works, and let `cargo fix --edition` do the source-level migration.
Satisfies clippy::unnecessary_sort_by introduced in newer toolchains (CI runs Rust 1.95).
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.
No description provided.