diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e01efc0..bc6840cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.19.2](https://github.com/statrs-dev/statrs/compare/v0.19.1...v0.19.2) - 2026-08-11 + +### Fixed + +- compute Hypergeometric pmf in log space for large populations + +### Other + +- drop overexplanation implementation + ## [0.19.1](https://github.com/statrs-dev/statrs/compare/v0.19.0...v0.19.1) - 2026-08-11 ### Added diff --git a/Cargo.lock.MSRV b/Cargo.lock.MSRV index 8dfc0924..7e2bde31 100644 --- a/Cargo.lock.MSRV +++ b/Cargo.lock.MSRV @@ -697,7 +697,7 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" [[package]] name = "statrs" -version = "0.19.1" +version = "0.19.2" dependencies = [ "anyhow", "approx", diff --git a/Cargo.toml b/Cargo.toml index caab9893..6aa20e66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "statrs" -version = "0.19.1" +version = "0.19.2" authors = ["Michael Ma"] description = "Statistical computing library for Rust" license = "MIT"