Skip to content

Commit cc895a2

Browse files
authored
Merge pull request #148 from PyO3/release-0.11
Bump version to 0.11
2 parents 8c8c927 + 8ade11b commit cc895a2

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changelog
2-
- Unreleased
2+
- v0.11.0
33
- `PyArray::get` is now unsafe.
44
- Introduce `PyArray::get_owned` and `PyReadonlyArray::get`.
55

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

1213
- v0.9.0
1314
- Update PyO3 to 0.10.0

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.10.0"
3+
version = "0.11.0"
44
authors = ["Toshiki Teramura <[email protected]>", "Yuji Kanagawa <[email protected]>"]
55
description = "Rust binding of NumPy C-API"
66
documentation = "https://rust-numpy.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.11.1"
61-
numpy = "0.10.0"
61+
numpy = "0.11.0"
6262
```
6363

6464
```rust
@@ -100,7 +100,7 @@ name = "rust_ext"
100100
crate-type = ["cdylib"]
101101

102102
[dependencies]
103-
numpy = "0.10.0"
103+
numpy = "0.11.0"
104104
ndarray = "0.13"
105105

106106
[dependencies.pyo3]

0 commit comments

Comments
 (0)