Skip to content

Commit 16b35a4

Browse files
committed
Release irox-stats v0.3.5
1 parent 4c12afd commit 16b35a4

File tree

4 files changed

+43
-4
lines changed

4 files changed

+43
-4
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

irox/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ irox-imagery = { version = "^0.1.3", optional = true, path = "../libraries/image
8686
irox-log = { version = "^0.2.3", optional = true, path = "../libraries/log" }
8787
irox-networking = { version = "^0.4.6", optional = true, path = "../libraries/network" }
8888
irox-progress = { version = "^0.5.0", optional = true, path = "../libraries/progress" }
89-
irox-stats = { version = "^0.3.1", optional = true, path = "../libraries/stats" }
89+
irox-stats = { version = "^0.3.5", optional = true, path = "../libraries/stats" }
9090
irox-structs = { version = "^0.5.1", optional = true, path = "../libraries/structs" }
9191
irox-structs_derive = { version = "^0.4.0", optional = true, path = "../libraries/structs_derive" }
9292
irox-threading = { version = "^0.2.5", optional = true, path = "../libraries/threading" }

libraries/stats/CHANGELOG.md

+40-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,44 @@
11

22

33

4+
## v0.3.5 (2025-03-01)
5+
6+
### Chore
7+
8+
- <csr-id-e77e9a5d2460581f0f4140a350ca5fe0b283cc05/> cleanup remaining misc lints
9+
- <csr-id-de5e67fb00da4d87ac75adb7592f4848ba2399b2/> elude all the lifetimes!
10+
11+
### New Features
12+
13+
- <csr-id-e3b63bef4f213c78a8047afd446e9bc21a7c525d/> Add Debug implementation for Summary struct
14+
Implementing Debug for the Summary struct enables formatted output, making it easier to inspect its data during debugging. The format includes the average, standard deviation, and value range, improving overall usability and diagnostics.
15+
16+
### Refactor
17+
18+
- <csr-id-112ec8d3c36abf521c95fa4685682d320d617287/> push more onto the stack in tsdf
19+
20+
### Commit Statistics
21+
22+
<csr-read-only-do-not-edit/>
23+
24+
- 4 commits contributed to the release over the course of 13 calendar days.
25+
- 17 days passed between releases.
26+
- 4 commits were understood as [conventional](https://www.conventionalcommits.org).
27+
- 0 issues like '(#ID)' were seen in commit messages
28+
29+
### Commit Details
30+
31+
<csr-read-only-do-not-edit/>
32+
33+
<details><summary>view details</summary>
34+
35+
* **Uncategorized**
36+
- Push more onto the stack in tsdf ([`112ec8d`](https://github.com/spmadden/irox/commit/112ec8d3c36abf521c95fa4685682d320d617287))
37+
- Add Debug implementation for Summary struct ([`e3b63be`](https://github.com/spmadden/irox/commit/e3b63bef4f213c78a8047afd446e9bc21a7c525d))
38+
- Cleanup remaining misc lints ([`e77e9a5`](https://github.com/spmadden/irox/commit/e77e9a5d2460581f0f4140a350ca5fe0b283cc05))
39+
- Elude all the lifetimes! ([`de5e67f`](https://github.com/spmadden/irox/commit/de5e67fb00da4d87ac75adb7592f4848ba2399b2))
40+
</details>
41+
442
## v0.3.4 (2025-02-12)
543

644
### New Features
@@ -16,7 +54,7 @@
1654

1755
<csr-read-only-do-not-edit/>
1856

19-
- 3 commits contributed to the release.
57+
- 4 commits contributed to the release.
2058
- 2 days passed between releases.
2159
- 3 commits were understood as [conventional](https://www.conventionalcommits.org).
2260
- 0 issues like '(#ID)' were seen in commit messages
@@ -28,6 +66,7 @@
2866
<details><summary>view details</summary>
2967

3068
* **Uncategorized**
69+
- Release irox-stats v0.3.4 ([`70f99b0`](https://github.com/spmadden/irox/commit/70f99b02702ec7668aaa4cd825da62e9de2a4d2a))
3170
- Add support for integer and string time series in tsdf ([`e6ca146`](https://github.com/spmadden/irox/commit/e6ca1467817d75d366aefa164217b2c0a8fd00a0))
3271
- Add i64-to-u64 stream and u64-to-i64 decoder ([`36663c4`](https://github.com/spmadden/irox/commit/36663c457dcc80568f91925e44e8ae32aa3d3e07))
3372
- Refactor sampling to use macros and add new sample types ([`5aa954d`](https://github.com/spmadden/irox/commit/5aa954d71ea6895bacd65a795f10881870df10a2))

libraries/stats/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "irox-stats"
33
description = "Various mathematical and statistics utilities"
44
keywords = ["irox", "mathematics", "statistics", "library", "distributions"]
55
categories = ["mathematics", "no-std"]
6-
version = "0.3.4"
6+
version = "0.3.5"
77
edition.workspace = true
88
authors.workspace = true
99
homepage.workspace = true

0 commit comments

Comments
 (0)