Skip to content

Commit f744ac3

Browse files
authored
Merge pull request #178 from PyO3/release-0.13
Bump version to 0.13.1
2 parents 7194f44 + d55d471 commit f744ac3

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
- v0.13.1
4+
- Allow ndarray `>=0.13, < 0.15` to work with Rust 1.41.1.
5+
36
- v0.13.0
47
- Bump num-complex to 0.3
58
- Bump ndarray to 0.14

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.13.0"
3+
version = "0.13.1"
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ fn main() -> PyResult<()> {
8282

8383
### Write a Python module in Rust
8484

85-
Please see [simple-extension](https://github.com/PyO3/rust-numpy/tree/master/examples/simple-extension)
85+
Please see [simple-extension](https://github.com/PyO3/rust-numpy/tree/main/examples/simple-extension)
8686
directory for the complete example.
87-
Also, we have an example project with [ndarray-linalg](https://github.com/PyO3/rust-numpy/tree/master/examples/linalg).
87+
Also, we have an example project with [ndarray-linalg](https://github.com/PyO3/rust-numpy/tree/main/examples/linalg).
8888

8989
```toml
9090
[lib]
@@ -146,7 +146,7 @@ fn rust_ext(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
146146
We welcome [issues](https://github.com/rust-numpy/rust-numpy/issues)
147147
and [pull requests](https://github.com/rust-numpy/rust-numpy/pulls).
148148

149-
PyO3's [contrinbuting.md](https://github.com/PyO3/pyo3/blob/master/Contributing.md)
149+
PyO3's [contrinbuting.md](https://github.com/PyO3/pyo3/blob/main/Contributing.md)
150150
is a nice guide for starting.
151151
Also, we have a [gitter](https://gitter.im/PyO3/Lobby) channel for communicating.
152152

examples/linalg/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ An example extension with [ndarray-linalg](https://github.com/rust-ndarray/ndarr
44

55
Needs a fortran compiler (e.g., `gfortran`) for building.
66

7-
See [simple-extension's README](https://github.com/PyO3/rust-numpy/blob/master/examples/simple-extension/README.md)
7+
See [simple-extension's README](https://github.com/PyO3/rust-numpy/blob/main/examples/simple-extension/README.md)
88
for introduction.
99

src/array.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ use crate::slice_box::SliceBox;
3939
/// Like [`new`](#method.new), all constractor methods of `PyArray` returns `&PyArray`.
4040
///
4141
/// This design follows
42-
/// [pyo3's ownership concept](https://pyo3.rs/master/doc/pyo3/index.html#ownership-and-lifetimes).
42+
/// [pyo3's ownership concept](https://pyo3.rs/main/doc/pyo3/index.html#ownership-and-lifetimes).
4343
///
4444
///
4545
/// # Data type and Dimension

0 commit comments

Comments
 (0)