Skip to content

Commit

Permalink
Merge pull request #282 from PyO3/release-0.16
Browse files Browse the repository at this point in the history
Prepare to release version 0.16
  • Loading branch information
adamreichold committed Mar 3, 2022
2 parents 4b14d1d + b0d54de commit b9f01fa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

- Unreleased

- v0.16.0
- Bump PyO3 version to 0.16 ([#259](https://github.com/PyO3/rust-numpy/pull/212))
- Support object arrays ([#216](https://github.com/PyO3/rust-numpy/pull/216))
- Support borrowing arrays that are part of other Python objects via `PyArray::borrow_from_array` ([#230](https://github.com/PyO3/rust-numpy/pull/216))
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "numpy"
version = "0.15.1"
version = "0.16.0"
authors = [
"The rust-numpy Project Developers",
"PyO3 Project and Contributors <https://github.com/PyO3>"
]
description = "Rust bindings of NumPy C-API"
description = "PyO3-based Rust bindings of the NumPy C-API"
documentation = "https://docs.rs/numpy"
edition = "2018"
rust-version = "1.48"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ name = "rust_ext"
crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.15", features = ["extension-module"] }
numpy = "0.15"
pyo3 = { version = "0.16", features = ["extension-module"] }
numpy = "0.16"
```

```rust
Expand Down Expand Up @@ -93,8 +93,8 @@ fn rust_ext(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
name = "numpy-test"

[dependencies]
pyo3 = { version = "0.15", features = ["auto-initialize"] }
numpy = "0.15"
pyo3 = { version = "0.16", features = ["auto-initialize"] }
numpy = "0.16"
```

```rust
Expand Down Expand Up @@ -132,7 +132,7 @@ on anything but that exact range. It can therefore be necessary to manually unif
For example, if you specify the following dependencies

```toml
numpy = "0.15"
numpy = "0.16"
ndarray = "0.13"
```

Expand Down

0 comments on commit b9f01fa

Please sign in to comment.