Skip to content

Commit cd1a0e4

Browse files
committed
Bump version to 0.4.0-alpha.1
1 parent 5db7ba6 commit cd1a0e4

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

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.3.2"
3+
version = "0.4.0-alpha.1"
44
authors = ["Toshiki Teramura <[email protected]>"]
55

66
description = "Rust binding of NumPy C-API"

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ name = "numpy-test"
3939

4040
[dependencies]
4141
pyo3 = "^0.5.0-alpha.2"
42-
numpy = "0.3"
42+
numpy = "0.4.0-alpha.1"
4343
```
4444

4545
``` rust
@@ -82,7 +82,7 @@ name = "rust_ext"
8282
crate-type = ["cdylib"]
8383

8484
[dependencies]
85-
numpy = "0.3"
85+
numpy = "0.4.0-alpha.1"
8686
ndarray = "0.12"
8787

8888
[dependencies.pyo3]
@@ -145,8 +145,11 @@ We need your feedback. Don't hesitate to open [issues](https://github.com/termos
145145

146146
Version
147147
--------
148-
- v0.4.0(Coming soon)
148+
- v0.4.0(coming soon)
149149
- Duplicate `PyArrayModule` and import Numpy API automatically
150+
- Fix memory leak of `IntoPyArray` and add `ToPyArray` crate
151+
- PyArray has dimension as type parameter. Now it looks like `PyArray<T, D>`
152+
- Use `ndarray::IntoDimension` to specify dimension
150153

151154
- v0.3.1, v0.3.2
152155
- Just update dependencies

0 commit comments

Comments
 (0)