Skip to content

Commit bcef0aa

Browse files
davidhewittkngwyu
authored andcommitted
Release v0.12.2
1 parent 0ebe427 commit bcef0aa

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
- v0.12.2
4+
- Pin PyO3 minor versions to 0.12
5+
- Pin ndarray minor versions to 0.13
6+
37
- v0.12.1
48
- Fix compile error in Rust 1.39
59

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.12.1"
3+
version = "0.12.2"
44
authors = ["Toshiki Teramura <[email protected]>", "Yuji Kanagawa <[email protected]>"]
55
description = "Rust binding of NumPy C-API"
66
documentation = "https://pyo3.github.io/rust-numpy/numpy"
@@ -14,8 +14,8 @@ cfg-if = "0.1"
1414
libc = "0.2"
1515
num-complex = "0.2"
1616
num-traits = "0.2"
17-
ndarray = ">=0.13"
18-
pyo3 = ">=0.12"
17+
ndarray = "0.13"
18+
pyo3 = "0.12"
1919

2020
[features]
2121
# In default setting, python version is automatically detected

examples/linalg/Cargo.toml

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

1111
[dependencies]
1212
numpy = { path = "../.." }
13-
ndarray = ">= 0.13"
13+
ndarray = "0.13"
1414
ndarray-linalg = { version = "0.12", features = ["openblas"] }
1515

1616
[dependencies.pyo3]

examples/simple-extension/Cargo.toml

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

1111
[dependencies]
1212
numpy = { path = "../.." }
13-
ndarray = ">= 0.12"
13+
ndarray = "0.13"
1414

1515
[dependencies.pyo3]
1616
version = "0.12"

0 commit comments

Comments
 (0)