Skip to content

Commit 96d2140

Browse files
committed
Add CHANGELOG.md
1 parent 8de3443 commit 96d2140

File tree

2 files changed

+36
-37
lines changed

2 files changed

+36
-37
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Changelog
2+
- v0.6.0
3+
- Update PyO3 to 0.7
4+
- Drop Python2 support
5+
6+
- v0.5.0
7+
- Update PyO3 to 0.6
8+
9+
- v0.4.0
10+
- Duplicate `PyArrayModule` and import Numpy API automatically
11+
- Fix memory leak of `IntoPyArray` and add `ToPyArray` crate
12+
- PyArray has dimension as type parameter. Now it looks like `PyArray<T, D>`
13+
- Use `ndarray::IntoDimension` to specify dimension
14+
- Python2 support
15+
16+
- v0.3.1, v0.3.2
17+
- Just update dependencies
18+
19+
- v0.3.0
20+
- Breaking Change: Migrated to pyo3 from rust-cpython
21+
- Some api addition
22+
- [Static type checking with PhantomData](https://github.com/rust-numpy/rust-numpy/pull/41)
23+
24+
- v0.2.1
25+
- NEW: trait `IntoPyErr`, `IntoPyResult` for error translation
26+
27+
- v0.2.0
28+
- NEW: traits `IntoPyArray`, `ToPyArray`
29+
- MOD: Interface of `PyArray` creation functions are changed
30+
31+
- v0.1.1
32+
- Update documents
33+
34+
- v0.1.0
35+
- First Release
36+
- Expose unsafe interface of Array and UFunc API

README.md

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -158,40 +158,3 @@ fn rust_ext(_py: Python, m: &PyModule) -> PyResult<()> {
158158
We need your feedback.
159159

160160
Don't hesitate to open [issues](https://github.com/rust-numpy/rust-numpy/issues)!
161-
162-
## Version
163-
- v0.6.0
164-
- Update PyO3 to 0.7
165-
- Drop Python2 support
166-
167-
- v0.5.0
168-
- Update PyO3 to 0.6
169-
170-
- v0.4.0
171-
- Duplicate `PyArrayModule` and import Numpy API automatically
172-
- Fix memory leak of `IntoPyArray` and add `ToPyArray` crate
173-
- PyArray has dimension as type parameter. Now it looks like `PyArray<T, D>`
174-
- Use `ndarray::IntoDimension` to specify dimension
175-
- Python2 support
176-
177-
- v0.3.1, v0.3.2
178-
- Just update dependencies
179-
180-
- v0.3.0
181-
- Breaking Change: Migrated to pyo3 from rust-cpython
182-
- Some api addition
183-
- [Static type checking with PhantomData](https://github.com/rust-numpy/rust-numpy/pull/41)
184-
185-
- v0.2.1
186-
- NEW: trait `IntoPyErr`, `IntoPyResult` for error translation
187-
188-
- v0.2.0
189-
- NEW: traits `IntoPyArray`, `ToPyArray`
190-
- MOD: Interface of `PyArray` creation functions are changed
191-
192-
- v0.1.1
193-
- Update documents
194-
195-
- v0.1.0
196-
- First Release
197-
- Expose unsafe interface of Array and UFunc API

0 commit comments

Comments
 (0)