chore: bump arborist-metrics 0.1.2 → 0.1.3#16
Merged
Conversation
Upstream library was renamed `arborist` → `arborist-metrics` (package name) but the lib name (`arborist`) and public API are unchanged, so no source imports require updates. v0.1.3 adds SPDX headers and README sections (AI/Copyright) — no API or behavior changes. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Rust 1.95 promotes `clippy::unnecessary_sort_by` which fails on descending sorts written as `sort_by(|a, b| b.x.cmp(&a.x))`. The idiomatic form uses `sort_by_key(|b| std::cmp::Reverse(b.x))`. Behavior is identical; only the lint is satisfied. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
montfort
added a commit
that referenced
this pull request
May 20, 2026
Patch bump rolling up: - arborist-metrics 0.1.2 → 0.1.3 (#16) - README: Copyright + "Built with AI · Powered by StrayMark" sections (#17, #18) - SPDX headers on all Rust sources under src/ and tests/cli/ (#17) Also expands `package.exclude` in Cargo.toml to match the upstream arborist-metrics convention, dropping agent-tooling directories (.agent/, .claude/, .cursor/, .gemini/) and StrayMark governance docs (CLAUDE.md, GEMINI.md, STRAYMARK.md, AGENTS.md) from the crates.io tarball. The package goes from 61 → 33 files. 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
arborist-metricsfrom0.1.2to0.1.3and pins the spec inCargo.tomlto"0.1.3"(was"0.1").arborist→arborist-metrics) and moved toStrangeDaysTech/arborist-metrics. The package name on crates.io is already correct; the[lib] name = "arborist"is preserved, so nouse arborist::...import changes are required.v0.1.3adds SPDX headers and README sections (AI/Copyright). No API or behavior changes.Test plan
cargo build— cleancargo test— 29/29 passingcargo clippy --all-targets -- -D warnings— no warnings🤖 Generated with Claude Code