Skip to content

Commit b5aba4c

Browse files
committed
Prepare release of version 0.16.0
1 parent f8f5d6c commit b5aba4c

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
- Unreleased
4+
5+
- v0.16.0
46
- Bump PyO3 version to 0.16 ([#259](https://github.com/PyO3/rust-numpy/pull/212))
57
- Support object arrays ([#216](https://github.com/PyO3/rust-numpy/pull/216))
68
- Support borrowing arrays that are part of other Python objects via `PyArray::borrow_from_array` ([#230](https://github.com/PyO3/rust-numpy/pull/216))

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "numpy"
3-
version = "0.15.1"
3+
version = "0.16.0"
44
authors = [
55
"The rust-numpy Project Developers",
66
"PyO3 Project and Contributors <https://github.com/PyO3>"
77
]
8-
description = "Rust bindings of NumPy C-API"
8+
description = "PyO3-based Rust bindings of the NumPy C-API"
99
documentation = "https://docs.rs/numpy"
1010
edition = "2018"
1111
rust-version = "1.48"

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ name = "rust_ext"
3838
crate-type = ["cdylib"]
3939

4040
[dependencies]
41-
pyo3 = { version = "0.15", features = ["extension-module"] }
42-
numpy = "0.15"
41+
pyo3 = { version = "0.16", features = ["extension-module"] }
42+
numpy = "0.16"
4343
```
4444

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

9595
[dependencies]
96-
pyo3 = { version = "0.15", features = ["auto-initialize"] }
97-
numpy = "0.15"
96+
pyo3 = { version = "0.16", features = ["auto-initialize"] }
97+
numpy = "0.16"
9898
```
9999

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

134134
```toml
135-
numpy = "0.15"
135+
numpy = "0.16"
136136
ndarray = "0.13"
137137
```
138138

0 commit comments

Comments
 (0)