diff --git a/Cargo.lock b/Cargo.lock index 0abca43..63f443f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2747,7 +2747,7 @@ dependencies = [ [[package]] name = "irox-stats" -version = "0.2.6" +version = "0.2.7" dependencies = [ "irox-bits", "irox-time", diff --git a/libraries/stats/CHANGELOG.md b/libraries/stats/CHANGELOG.md index 903476a..4664732 100644 --- a/libraries/stats/CHANGELOG.md +++ b/libraries/stats/CHANGELOG.md @@ -1,8 +1,40 @@ +## v0.2.7 (2024-10-29) + +### Chore + + - update deps + +### New Features + + - new Summary struct and one second streaming windows stats + +### Commit Statistics + + + + - 2 commits contributed to the release. + - 5 days passed between releases. + - 2 commits were understood as [conventional](https://www.conventionalcommits.org). + - 0 issues like '(#ID)' were seen in commit messages + +### Commit Details + + + +
view details + + * **Uncategorized** + - New Summary struct and one second streaming windows stats ([`b21947a`](https://github.com/spmadden/irox/commit/b21947ab6d854b37712535f92681beed2759c7a2)) + - Update deps ([`2747f68`](https://github.com/spmadden/irox/commit/2747f689e2206435cdd1ee8bab43ad9442415f20)) +
+ ## v0.2.6 (2024-10-24) + + ### Chore - fixup lints & formatting @@ -24,7 +56,7 @@ - - 9 commits contributed to the release. + - 10 commits contributed to the release. - 159 days passed between releases. - 8 commits were understood as [conventional](https://www.conventionalcommits.org). - 0 issues like '(#ID)' were seen in commit messages @@ -36,6 +68,7 @@
view details * **Uncategorized** + - Release irox-stats v0.2.6 ([`9f599be`](https://github.com/spmadden/irox/commit/9f599bea75ab85beab95f646358fdb4074dcc1c5)) - Remove unused tdigest module ([`58b51d5`](https://github.com/spmadden/irox/commit/58b51d507bb1722c0dd2896a734a8ba6dfe884f2)) - Release irox-bits v0.2.0 ([`3ed7b85`](https://github.com/spmadden/irox/commit/3ed7b850a87bfc670ce18f5c824008f09b0af7b4)) - Fix stats tests ([`e8ef0ac`](https://github.com/spmadden/irox/commit/e8ef0ace18ba71f7aedb871040488b6a5ecaa680)) diff --git a/libraries/stats/Cargo.toml b/libraries/stats/Cargo.toml index 72d08cb..779c906 100644 --- a/libraries/stats/Cargo.toml +++ b/libraries/stats/Cargo.toml @@ -3,7 +3,7 @@ name = "irox-stats" description = "Various mathematical and statistics utilities" keywords = ["irox", "mathematics", "statistics", "library", "distributions"] categories = ["mathematics", "no-std"] -version= "0.2.6" +version= "0.2.7" edition.workspace = true authors.workspace = true homepage.workspace = true