-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from phip1611/dev
v0.2.0
- Loading branch information
Showing
12 changed files
with
173 additions
and
121 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: QA | ||
|
||
on: [ push, pull_request ] | ||
|
||
jobs: | ||
spellcheck: | ||
name: Spellcheck | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
# Executes "typos ." | ||
- uses: crate-ci/[email protected] |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# v0.2.0 (2023-04-11) | ||
- MSRV is 1.60.0 | ||
- bitflags bump: 1.x -> 2.x | ||
- few internal code improvements (less possible panics) | ||
- `Mode::to_flags` now returns a Result | ||
- Feature `all` was removed. Use `alloc` instead. |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
#!/usr/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
cargo build --all-targets --verbose --features all | ||
cargo build --all-targets --verbose --features alloc | ||
# use some random no_std target | ||
rustup target add thumbv7em-none-eabihf | ||
cargo build --verbose --target thumbv7em-none-eabihf --features all | ||
cargo test --verbose --features all | ||
cargo build --verbose --target thumbv7em-none-eabihf --features alloc | ||
cargo test --verbose --features alloc | ||
|
||
cargo fmt -- --check | ||
cargo clippy --features all | ||
cargo doc --features all | ||
cargo +1.60.0 clippy --features alloc | ||
cargo +1.60.0 doc --no-deps --document-private-items --features alloc |
This file contains 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
This file contains 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
Oops, something went wrong.