diff --git a/Cargo.lock b/Cargo.lock index 47d8d57..2fff74f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2257,7 +2257,7 @@ dependencies = [ [[package]] name = "irox-bits" -version = "0.1.4" +version = "0.1.5" [[package]] name = "irox-build-rs" diff --git a/libraries/bits/CHANGELOG.md b/libraries/bits/CHANGELOG.md index 5f82c9f..22a9c56 100644 --- a/libraries/bits/CHANGELOG.md +++ b/libraries/bits/CHANGELOG.md @@ -1,7 +1,34 @@ +## v0.1.5 (2024-08-01) + +### New Features + + - BitsError can be used in const environments + +### Commit Statistics + + + + - 1 commit contributed to the release over the course of 6 calendar days. + - 8 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** + - BitsError can be used in const environments ([`9020f11`](https://github.com/spmadden/irox/commit/9020f1174abfc895ad3438fb60cc3bc673a0a1b1)) +
+ ## v0.1.4 (2024-07-19) + + ### Other - fix docsrs for irox-bits @@ -10,7 +37,7 @@ - - 1 commit contributed to the release. + - 2 commits contributed to the release. - 12 days passed between releases. - 1 commit was understood as [conventional](https://www.conventionalcommits.org). - 0 issues like '(#ID)' were seen in commit messages @@ -22,6 +49,7 @@
view details * **Uncategorized** + - Release irox-bits v0.1.4 ([`f2464aa`](https://github.com/spmadden/irox/commit/f2464aa9392a50e3bdaeae56e4d7353099c36a15)) - Fix docsrs for irox-bits ([`7767718`](https://github.com/spmadden/irox/commit/77677189e46aec6b857762f5a8ff0b49d6922ebf))
diff --git a/libraries/bits/Cargo.toml b/libraries/bits/Cargo.toml index 72635c3..2007ec7 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.1.4" +version= "0.1.5" edition.workspace = true authors.workspace = true homepage.workspace = true