Skip to content

Commit

Permalink
Merge pull request #161 from PyO3/release-0.12
Browse files Browse the repository at this point in the history
Bump version to 0.12.1
  • Loading branch information
kngwyu authored Oct 12, 2020
2 parents 1582ad9 + 7d8c039 commit 23f86cf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

- v0.12.1
- Fix compile error in Rust 1.39

- v0.12.0
- Introduce `NpySingleIter` and `NpyMultiIter`.
- Introduce `PyArrayDescr`.
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.12.0"
version = "0.12.1"
authors = ["Toshiki Teramura <[email protected]>", "Yuji Kanagawa <[email protected]>"]
description = "Rust binding of NumPy C-API"
documentation = "https://pyo3.github.io/rust-numpy/numpy"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ name = "numpy-test"

[dependencies]
pyo3 = "0.12"
numpy = "0.12.0"
numpy = "0.12"
```

```rust
Expand Down Expand Up @@ -92,7 +92,7 @@ name = "rust_ext"
crate-type = ["cdylib"]

[dependencies]
numpy = "0.12.0"
numpy = "0.12"
ndarray = "0.13"

[dependencies.pyo3]
Expand Down

0 comments on commit 23f86cf

Please sign in to comment.