Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.4.0] - 2026-05-19

### Added

- Midpoint-based `mean()` on `CumulativeROHistogram` / `CumulativeROHistogram32`
— the mean of all observations, estimated from bucket midpoints, computed
once at construction time across `from_parts`, `From<&Histogram>`, and
`From<&SparseHistogram>`. Returns `None` for an empty histogram.

### Changed

- `CumulativeROHistogram` / `CumulativeROHistogram32` no longer implement `Eq`
(they now store an `f64` mean); `PartialEq` is retained. The borrowed
`*Ref` view types are unaffected.

## [1.3.1] - 2026-04-29

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "histogram"
version = "1.4.0-alpha.0"
version = "1.4.0"
edition = "2024"
authors = ["Brian Martin <brian@iop.systems>", "Yao Yue <yao@iop.systems>"]
license = "MIT OR Apache-2.0"
Expand Down
Loading