Skip to content

Commit f830c9e

Browse files
committedAug 23, 2022
Release 0.5.1
1 parent 2f79a65 commit f830c9e

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed
 

‎Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ndarray-stats"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["Jim Turner <ndarray-stats@turner.link>", "LukeMathWalker <rust@lpalmieri.com>"]
55
edition = "2018"
66

‎README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,21 @@ Please feel free to contribute new functionality! A roadmap can be found [here](
2727
```toml
2828
[dependencies]
2929
ndarray = "0.15"
30-
ndarray-stats = "0.5"
30+
ndarray-stats = "0.5.1"
3131
```
3232

3333
## Releases
3434

35+
* **0.5.1**
36+
* Fixed bug in implementation of `MaybeNaN::remove_nan_mut` for `f32` and
37+
`f64` for views with non-standard layouts. Before this fix, the bug could
38+
cause incorrect results, buffer overflows, etc., in this method and others
39+
which use it. Thanks to [@JacekCzupyt](https://github.com/JacekCzupyt) for
40+
reporting the issue (#89).
41+
* Minor docs improvements.
42+
43+
*Contributors*: [@jturner314](https://github.com/jturner314), [@BenMoon](https://github.com/BenMoon)
44+
3545
* **0.5.0**
3646
* Breaking changes
3747
* Minimum supported Rust version: `1.49.0`
@@ -108,7 +118,7 @@ Please feel free to create issues and submit PRs.
108118

109119
## License
110120

111-
Copyright 2018 `ndarray-stats` developers
121+
Copyright 2018–2022 `ndarray-stats` developers
112122

113123
Licensed under the [Apache License, Version 2.0](LICENSE-APACHE), or the [MIT
114124
license](LICENSE-MIT), at your option. You may not use this project except in

0 commit comments

Comments
 (0)
Please sign in to comment.