Skip to content

Commit 23f86cf

Browse files
authored
Merge pull request #161 from PyO3/release-0.12
Bump version to 0.12.1
2 parents 1582ad9 + 7d8c039 commit 23f86cf

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

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

3+
- v0.12.1
4+
- Fix compile error in Rust 1.39
5+
36
- v0.12.0
47
- Introduce `NpySingleIter` and `NpyMultiIter`.
58
- Introduce `PyArrayDescr`.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "numpy"
3-
version = "0.12.0"
3+
version = "0.12.1"
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"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ name = "numpy-test"
5858

5959
[dependencies]
6060
pyo3 = "0.12"
61-
numpy = "0.12.0"
61+
numpy = "0.12"
6262
```
6363

6464
```rust
@@ -92,7 +92,7 @@ name = "rust_ext"
9292
crate-type = ["cdylib"]
9393

9494
[dependencies]
95-
numpy = "0.12.0"
95+
numpy = "0.12"
9696
ndarray = "0.13"
9797

9898
[dependencies.pyo3]

0 commit comments

Comments
 (0)