File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
+
3
+ - v0.12.0
4
+ - Introduce ` NpySingleIter ` and ` NpyMultiIter ` .
5
+ - Introduce ` PyArrayDescr ` .
6
+
2
7
- v0.11.0
3
8
- ` PyArray::get ` is now unsafe.
4
9
- Introduce ` PyArray::get_owned ` and ` PyReadonlyArray::get ` .
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " numpy"
3
- version = " 0.11 .0"
3
+ version = " 0.12 .0"
4
4
authors = [
" Toshiki Teramura <[email protected] >" ,
" Yuji Kanagawa <[email protected] >" ]
5
5
description = " Rust binding of NumPy C-API"
6
6
documentation = " https://pyo3.github.io/rust-numpy/numpy"
Original file line number Diff line number Diff line change 1
1
rust-numpy
2
2
===========
3
3
[ ![ 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 )
5
5
[ ![ Crate] ( http://meritbadge.herokuapp.com/numpy )] ( https://crates.io/crates/numpy )
6
6
[ ![ 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 )
7
7
@@ -57,8 +57,8 @@ using [setuptools-rust](https://github.com/PyO3/setuptools-rust).
57
57
name = " numpy-test"
58
58
59
59
[dependencies ]
60
- pyo3 = " 0.11.1 "
61
- numpy = " 0.11 .0"
60
+ pyo3 = " 0.12 "
61
+ numpy = " 0.12 .0"
62
62
```
63
63
64
64
``` rust
@@ -92,11 +92,11 @@ name = "rust_ext"
92
92
crate-type = [" cdylib" ]
93
93
94
94
[dependencies ]
95
- numpy = " 0.11 .0"
95
+ numpy = " 0.12 .0"
96
96
ndarray = " 0.13"
97
97
98
98
[dependencies .pyo3 ]
99
- version = " 0.11.1 "
99
+ version = " 0.12 "
100
100
features = [" extension-module" ]
101
101
```
102
102
You can’t perform that action at this time.
0 commit comments