From bcef0aa2d90af2e82fefd6b65a328111f175dadc Mon Sep 17 00:00:00 2001 From: David Hewitt <1939362+davidhewitt@users.noreply.github.com> Date: Tue, 22 Dec 2020 19:13:10 +0000 Subject: [PATCH] Release v0.12.2 --- CHANGELOG.md | 4 ++++ Cargo.toml | 6 +++--- examples/linalg/Cargo.toml | 2 +- examples/simple-extension/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d5c45834..34965355c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 44ea6aae9..546d01a26 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "numpy" -version = "0.12.1" +version = "0.12.2" authors = ["Toshiki Teramura ", "Yuji Kanagawa "] description = "Rust binding of NumPy C-API" documentation = "https://pyo3.github.io/rust-numpy/numpy" @@ -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 diff --git a/examples/linalg/Cargo.toml b/examples/linalg/Cargo.toml index b2b432847..573adfe0b 100644 --- a/examples/linalg/Cargo.toml +++ b/examples/linalg/Cargo.toml @@ -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] diff --git a/examples/simple-extension/Cargo.toml b/examples/simple-extension/Cargo.toml index 75ce9c896..d99009141 100644 --- a/examples/simple-extension/Cargo.toml +++ b/examples/simple-extension/Cargo.toml @@ -10,7 +10,7 @@ crate-type = ["cdylib"] [dependencies] numpy = { path = "../.." } -ndarray = ">= 0.12" +ndarray = "0.13" [dependencies.pyo3] version = "0.12"