Skip to content

Commit 112d2f3

Browse files
authored
Merge pull request #171 from PyO3/release-0.13
Bump version to 0.13.0
2 parents de7cf73 + c89a7c4 commit 112d2f3

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
- Unreleased
3+
- v0.13.0
44
- Bump num-complex to 0.3
55
- Bump ndarray to 0.14
66
- Bump pyo3 to 0.13

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.2"
3+
version = "0.13.0"
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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ using [setuptools-rust](https://github.com/PyO3/setuptools-rust).
5454
name = "numpy-test"
5555

5656
[dependencies]
57-
pyo3 = "0.12"
58-
numpy = "0.12"
57+
pyo3 = "0.13"
58+
numpy = "0.13"
5959
```
6060

6161
```rust
@@ -91,11 +91,11 @@ name = "rust_ext"
9191
crate-type = ["cdylib"]
9292

9393
[dependencies]
94-
numpy = "0.12"
95-
ndarray = "0.13"
94+
numpy = "0.13"
95+
ndarray = "0.14"
9696

9797
[dependencies.pyo3]
98-
version = "0.12"
98+
version = "0.13"
9999
features = ["extension-module"]
100100
```
101101

0 commit comments

Comments
 (0)