Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 0.15 #215

Merged
merged 1 commit into from
Nov 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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