led_bargraph 0.2.1

A Rust library & application for the Adafruit Bi-Color (Red/Green) 24-Bar Bargraph w/I2C Backpack Kit.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Releasing new crates

1. Run `cargo update` to refresh dependencies.
1. Run `cargo outdated` and fix any advice.
1. Run `touch src/lib.rs && cargo clippy` and fix any advice.
1. Run `cargo clean && cargo build && cargo test` to double-check everything is happy.
1. Update the version info in `Cargo.toml` as appropriate.
1. Dry-run the publish: `cargo publish --dry-run --allow-dirty`
1. Git push the change, wait for CI to pass.
1. Tag the commit & push it: `git tag vX.Y.Z; git push --tags`
1. Publish the crate: `cargo publish`