Skip to content

Commit

Permalink
Merge pull request #148 from PyO3/release-0.11
Browse files Browse the repository at this point in the history
Bump version to 0.11
  • Loading branch information
kngwyu committed Jul 16, 2020
2 parents 8c8c927 + 8ade11b commit cc895a2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changelog
- Unreleased
- v0.11.0
- `PyArray::get` is now unsafe.
- Introduce `PyArray::get_owned` and `PyReadonlyArray::get`.

Expand All @@ -8,6 +8,7 @@
- `PyArray::as_slice`, `PyArray::as_slice_mut`, `PyArray::as_array`, and `PyArray::as_array_mut` is now unsafe.
- Introduce `PyArray::as_cell_slice`, `PyArray::to_vec`, and `PyArray::to_owned_array`.
- Rename `TypeNum` trait `Element`, and `NpyDataType` `DataType`.
- Update PyO3 to 0.11

- v0.9.0
- Update PyO3 to 0.10.0
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.10.0"
version = "0.11.0"
authors = ["Toshiki Teramura <[email protected]>", "Yuji Kanagawa <[email protected]>"]
description = "Rust binding of NumPy C-API"
documentation = "https://rust-numpy.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.11.1"
numpy = "0.10.0"
numpy = "0.11.0"
```

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

[dependencies]
numpy = "0.10.0"
numpy = "0.11.0"
ndarray = "0.13"

[dependencies.pyo3]
Expand Down

0 comments on commit cc895a2

Please sign in to comment.