Skip to content

Commit

Permalink
Merge pull request #215 from PyO3/release-0.15
Browse files Browse the repository at this point in the history
Bump version to 0.15
  • Loading branch information
kngwyu authored Nov 6, 2021
2 parents 87c5a65 + 925b915 commit 29f2737
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

- v0.15.0
- [Remove resolver from Cargo.toml](https://github.com/PyO3/rust-numpy/pull/202)
- [Bump PyO3 to 0.15](https://github.com/PyO3/rust-numpy/pull/212)

- v0.14.1
- [Fix MSRV support](https://github.com/PyO3/rust-numpy/issues/198)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "numpy"
version = "0.14.1"
version = "0.15.0"
authors = [
"Toshiki Teramura <toshiki.teramura@gmail.com>",
"Yuji Kanagawa <yuji.kngw.80s.revive@gmail.com>",
Expand Down
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,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.14"
numpy = "0.15"
ndarray = "0.13"
```

Expand All @@ -80,8 +80,8 @@ to achieve a single dependency on version `0.13.1` of `ndarray`.
name = "numpy-test"

[dependencies]
pyo3 = "0.14"
numpy = "0.14"
pyo3 = "0.15"
numpy = "0.15"
```

```rust
Expand Down Expand Up @@ -117,11 +117,10 @@ name = "rust_ext"
crate-type = ["cdylib"]

[dependencies]
numpy = "0.14"
ndarray = "0.14"
numpy = "0.15"

[dependencies.pyo3]
version = "0.14"
version = "0.15"
features = ["extension-module"]
```

Expand Down
4 changes: 1 addition & 3 deletions examples/linalg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ crate-type = ["cdylib"]

[dependencies]
numpy = { path = "../.." }
ndarray = "0.15"
# ndarray-linalg = { version = "0.13", features = ["openblas-static"] }
ndarray-linalg = { git = "https://github.com/rust-ndarray/ndarray-linalg", features = ["openblas-static"] }
ndarray-linalg = { version = "0.14.1", features = ["openblas-static"] }

[dependencies.pyo3]
version = "0.15"
Expand Down
1 change: 0 additions & 1 deletion examples/simple-extension/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ crate-type = ["cdylib"]

[dependencies]
numpy = { path = "../.." }
ndarray = "0.15.2"
num-complex = "0.4.0"

[dependencies.pyo3]
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-extension/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use ndarray::{ArrayD, ArrayViewD, ArrayViewMutD};
use numpy::ndarray::{ArrayD, ArrayViewD, ArrayViewMutD};
use numpy::{c64, IntoPyArray, PyArrayDyn, PyReadonlyArrayDyn};
use pyo3::prelude::{pymodule, PyModule, PyResult, Python};

Expand Down

0 comments on commit 29f2737

Please sign in to comment.