Skip to content

Commit

Permalink
Release v0.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhewitt authored and kngwyu committed Dec 23, 2020
1 parent 0ebe427 commit bcef0aa
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 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.12.2
- Pin PyO3 minor versions to 0.12
- Pin ndarray minor versions to 0.13

- v0.12.1
- Fix compile error in Rust 1.39

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "numpy"
version = "0.12.1"
version = "0.12.2"
authors = ["Toshiki Teramura <toshiki.teramura@gmail.com>", "Yuji Kanagawa <yuji.kngw.80s.revive@gmail.com>"]
description = "Rust binding of NumPy C-API"
documentation = "https://pyo3.github.io/rust-numpy/numpy"
Expand All @@ -14,8 +14,8 @@ cfg-if = "0.1"
libc = "0.2"
num-complex = "0.2"
num-traits = "0.2"
ndarray = ">=0.13"
pyo3 = ">=0.12"
ndarray = "0.13"
pyo3 = "0.12"

[features]
# In default setting, python version is automatically detected
Expand Down
2 changes: 1 addition & 1 deletion examples/linalg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate-type = ["cdylib"]

[dependencies]
numpy = { path = "../.." }
ndarray = ">= 0.13"
ndarray = "0.13"
ndarray-linalg = { version = "0.12", features = ["openblas"] }

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

[dependencies]
numpy = { path = "../.." }
ndarray = ">= 0.12"
ndarray = "0.13"

[dependencies.pyo3]
version = "0.12"
Expand Down

0 comments on commit bcef0aa

Please sign in to comment.