Skip to content

Commit f83b445

Browse files
authored
Merge pull request #158 from PyO3/release-0.12
Bump version to 0.12.0
2 parents 38e2057 + 52548a6 commit f83b445

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Changelog
2+
3+
- v0.12.0
4+
- Introduce `NpySingleIter` and `NpyMultiIter`.
5+
- Introduce `PyArrayDescr`.
6+
27
- v0.11.0
38
- `PyArray::get` is now unsafe.
49
- Introduce `PyArray::get_owned` and `PyReadonlyArray::get`.

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.11.0"
3+
version = "0.12.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
@@ -1,7 +1,7 @@
11
rust-numpy
22
===========
33
[![Build Status](https://travis-ci.org/pyo3/rust-numpy.svg?branch=master)](https://travis-ci.org/pyo3/rust-numpy)
4-
[![Build status](https://ci.appveyor.com/api/projects/status/bjaru43c7t1alx2x/branch/master?svg=true)](https://ci.appveyor.com/project/kngwyu/rust-numpy/branch/master)
4+
[![Actions Status](https://github.com/pyo3/rust-numpy/workflows/Test/badge.svg)](https://github.com/pyo3/rust-numpy/actions)
55
[![Crate](http://meritbadge.herokuapp.com/numpy)](https://crates.io/crates/numpy)
66
[![minimum rustc 1.39](https://img.shields.io/badge/rustc-1.39+-blue.svg)](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)
77

@@ -57,8 +57,8 @@ using [setuptools-rust](https://github.com/PyO3/setuptools-rust).
5757
name = "numpy-test"
5858

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

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

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

9898
[dependencies.pyo3]
99-
version = "0.11.1"
99+
version = "0.12"
100100
features = ["extension-module"]
101101
```
102102

0 commit comments

Comments
 (0)