diff --git a/Cargo.lock b/Cargo.lock index ec046ae3..79a25799 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2443,7 +2443,7 @@ dependencies = [ [[package]] name = "irox-bits" -version = "0.2.0" +version = "0.2.1" [[package]] name = "irox-build-rs" diff --git a/libraries/bits/CHANGELOG.md b/libraries/bits/CHANGELOG.md index 98a49cd2..a697ea68 100644 --- a/libraries/bits/CHANGELOG.md +++ b/libraries/bits/CHANGELOG.md @@ -1,5 +1,30 @@ +## v0.2.1 (2024-10-29) + +### New Features + + - add const unsigned primitive conversions + +### Commit Statistics + + + + - 1 commit contributed to the release. + - 5 days passed between releases. + - 1 commit was understood as [conventional](https://www.conventionalcommits.org). + - 0 issues like '(#ID)' were seen in commit messages + +### Commit Details + + + +
view details + + * **Uncategorized** + - Add const unsigned primitive conversions ([`913fb31`](https://github.com/spmadden/irox/commit/913fb3149cf855466ff2dd05845e132546c44023)) +
+ ## v0.2.0 (2024-10-24) ### New Features @@ -24,7 +49,7 @@ - - 9 commits contributed to the release. + - 10 commits contributed to the release. - 84 days passed between releases. - 9 commits were understood as [conventional](https://www.conventionalcommits.org). - 0 issues like '(#ID)' were seen in commit messages @@ -36,6 +61,7 @@
view details * **Uncategorized** + - Release irox-bits v0.2.0 ([`3ed7b85`](https://github.com/spmadden/irox/commit/3ed7b850a87bfc670ce18f5c824008f09b0af7b4)) - Breaking: refactor BitsWrapper to have an owned and borrowed variant. ([`d256059`](https://github.com/spmadden/irox/commit/d256059f37bcfc75dc8ba556e35343cb3cb18add)) - Fix warning from alloc ([`223f172`](https://github.com/spmadden/irox/commit/223f172cdf729543c8f08c7ad34bce22e04ef1a9)) - Impl Bits and MutBits for TcpStream ([`6e758ee`](https://github.com/spmadden/irox/commit/6e758eeead6cad3c16a8ce60e86ba4984f19514b)) diff --git a/libraries/bits/Cargo.toml b/libraries/bits/Cargo.toml index c5820126..a1d9d6f5 100644 --- a/libraries/bits/Cargo.toml +++ b/libraries/bits/Cargo.toml @@ -3,7 +3,7 @@ name = "irox-bits" description = "Bits & Bobs. No-std/No-alloc bit/byte manipulation of streams" keywords = ["irox"] categories = ["no-std::no-alloc", "encoding", "parsing", "embedded"] -version= "0.2.0" +version= "0.2.1" edition.workspace = true authors.workspace = true homepage.workspace = true diff --git a/libraries/metrics/Cargo.toml b/libraries/metrics/Cargo.toml index 670ac289..9f415d2c 100644 --- a/libraries/metrics/Cargo.toml +++ b/libraries/metrics/Cargo.toml @@ -39,4 +39,4 @@ bench = false [[bench]] name = "metrics_bench" -harness = false \ No newline at end of file +harness = false