Skip to content

Commit 1bbbad0

Browse files
committed
Bump version to 0.18 following PyO3's current release.
1 parent bf93c9d commit 1bbbad0

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
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.18.0
46
- Add conversions from and to datatypes provided by the [`nalgebra` crate](https://nalgebra.org/). ([#347](https://github.com/PyO3/rust-numpy/pull/347))
57
- Drop our wrapper for NumPy iterators which were deprecated in v0.16.0 as ndarray's iteration facilities are almost always preferable. ([#324](https://github.com/PyO3/rust-numpy/pull/324))
68
- Dynamic borrow checking now uses a capsule-based API and therefore works across multiple extensions using PyO3 and potentially other bindings or languages. ([#361](https://github.com/PyO3/rust-numpy/pull/361))

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "numpy"
3-
version = "0.17.2"
3+
version = "0.18.0"
44
authors = [
55
"The rust-numpy Project Developers",
66
"PyO3 Project and Contributors <https://github.com/PyO3>"
@@ -22,11 +22,11 @@ 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.17", default-features = false, features = ["macros"] }
25+
pyo3 = { version = "0.18", default-features = false, features = ["macros"] }
2626
rustc-hash = "1.1"
2727

2828
[dev-dependencies]
29-
pyo3 = { version = "0.17", default-features = false, features = ["auto-initialize"] }
29+
pyo3 = { version = "0.18", default-features = false, features = ["auto-initialize"] }
3030
nalgebra = { version = "0.32", default-features = false, features = ["std"] }
3131

3232
[package.metadata.docs.rs]

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.17", features = ["extension-module"] }
42-
numpy = "0.17"
41+
pyo3 = { version = "0.18", features = ["extension-module"] }
42+
numpy = "0.18"
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.17", features = ["auto-initialize"] }
97-
numpy = "0.17"
96+
pyo3 = { version = "0.18", features = ["auto-initialize"] }
97+
numpy = "0.18"
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.17"
135+
numpy = "0.18"
136136
ndarray = "0.13"
137137
```
138138

examples/linalg/Cargo.toml

+1-1
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.17", features = ["extension-module"] }
12+
pyo3 = { version = "0.18", features = ["extension-module"] }
1313
numpy = { path = "../.." }
1414
ndarray-linalg = { version = "0.14.1", features = ["openblas-system"] }
1515

examples/parallel/Cargo.toml

+1-1
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.17", features = ["extension-module", "multiple-pymethods"] }
12+
pyo3 = { version = "0.18", 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

+1-1
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.17", features = ["extension-module", "abi3-py37"] }
12+
pyo3 = { version = "0.18", features = ["extension-module", "abi3-py37"] }
1313
numpy = { path = "../.." }
1414

1515
[workspace]

0 commit comments

Comments
 (0)