Skip to content

Commit 52d70ca

Browse files
committed
Bump our version to 0.17.0 in parallel to PyO3's 0.17.0 release.
1 parent 251bfde commit 52d70ca

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
- Unreleased
4+
5+
- v0.17.0
46
- Add dynamic borrow checking to safely construct references into the interior of NumPy arrays. ([#274](https://github.com/PyO3/rust-numpy/pull/274))
57
- The deprecated iterator builders `NpySingleIterBuilder::{readonly,readwrite}` and `NpyMultiIterBuilder::add_{readonly,readwrite}` now take referencces to `PyReadonlyArray` and `PyReadwriteArray` instead of consuming them.
68
- The destructive `PyArray::resize` method is now unsafe if used without an instance of `PyReadwriteArray`. ([#302](https://github.com/PyO3/rust-numpy/pull/302))

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "numpy"
3-
version = "0.16.2"
3+
version = "0.17.0"
44
authors = [
55
"The rust-numpy Project Developers",
66
"PyO3 Project and Contributors <https://github.com/PyO3>"
@@ -22,10 +22,10 @@ num-complex = ">= 0.2, < 0.5"
2222
num-integer = "0.1"
2323
num-traits = "0.2"
2424
ndarray = ">= 0.13, < 0.16"
25-
pyo3 = { version = "0.16", default-features = false, features = ["macros"] }
25+
pyo3 = { version = "0.17", default-features = false, features = ["macros"] }
2626

2727
[dev-dependencies]
28-
pyo3 = { version = "0.16", default-features = false, features = ["auto-initialize"] }
28+
pyo3 = { version = "0.17", default-features = false, features = ["auto-initialize"] }
2929

3030
[package.metadata.docs.rs]
3131
all-features = true

README.md

Lines changed: 5 additions & 5 deletions
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.16", features = ["extension-module"] }
42-
numpy = "0.16"
41+
pyo3 = { version = "0.17", features = ["extension-module"] }
42+
numpy = "0.17"
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.16", features = ["auto-initialize"] }
97-
numpy = "0.16"
96+
pyo3 = { version = "0.17", features = ["auto-initialize"] }
97+
numpy = "0.17"
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.16"
135+
numpy = "0.17"
136136
ndarray = "0.13"
137137
```
138138

examples/linalg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "rust_linalg"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
pyo3 = { version = "0.16", features = ["extension-module"] }
12+
pyo3 = { version = "0.17", features = ["extension-module"] }
1313
numpy = { path = "../.." }
1414
ndarray-linalg = { version = "0.14.1", features = ["openblas-system"] }
1515

examples/parallel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "rust_parallel"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
pyo3 = { version = "0.16", features = ["extension-module", "multiple-pymethods"] }
12+
pyo3 = { version = "0.17", features = ["extension-module", "multiple-pymethods"] }
1313
numpy = { path = "../.." }
1414
ndarray = { version = "0.15", features = ["rayon", "blas"] }
1515
blas-src = { version = "0.8", features = ["openblas"] }

examples/simple/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "rust_ext"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
pyo3 = { version = "0.16", features = ["extension-module", "abi3-py37"] }
12+
pyo3 = { version = "0.17", features = ["extension-module", "abi3-py37"] }
1313
numpy = { path = "../.." }
1414

1515
[workspace]

0 commit comments

Comments
 (0)