diff --git a/CHANGELOG.md b/CHANGELOG.md index aaed3f2a9..5d73e940a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ - Unreleased +- v0.17.2 + - Fix unsound aliasing into `Box<[T]>` when converting them into NumPy arrays. ([#351](https://github.com/PyO3/rust-numpy/pull/351)) + - v0.17.1 - Fix use-after-free in `PyArray::resize`, `PyArray::reshape` and `PyArray::reshape_with_order`. ([#341](https://github.com/PyO3/rust-numpy/pull/341)) - Fix UB in `ToNpyDims::as_dims_ptr` with dimensions of dynamic size (-1). ([#344](https://github.com/PyO3/rust-numpy/pull/344)) diff --git a/Cargo.toml b/Cargo.toml index 21e5d3cfa..9ae5c3e22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "numpy" -version = "0.17.1" +version = "0.17.2" authors = [ "The rust-numpy Project Developers", "PyO3 Project and Contributors "