Skip to content

Commit 9095a77

Browse files
committed
release: 0.22.0
1 parent d07dbf5 commit 9095a77

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Changelog
22

3-
- Unreleased
3+
- v0.22.0
44
- Bump MSRV to 1.63. ([#450](https://github.com/PyO3/rust-numpy/pull/450))
55
- Add `permute` and `transpose` methods for changing the order of axes of a `PyArray`. ([#428](https://github.com/PyO3/rust-numpy/pull/428))
66
- Add support for NumPy v2 which had a number of changes to the [C API](https://numpy.org/devdocs/numpy_2_0_migration_guide.html#c-api-changes). ([#442](https://github.com/PyO3/rust-numpy/pull/442))
7+
- Add support for ndarray 0.16. ([#439](https://github.com/PyO3/rust-numpy/pull/439))
78
- Bumped pyo3 dependency to v0.22.0 which required the addition of several new methods to the `Element` trait. ([#435](https://github.com/PyO3/rust-numpy/pull/435))
89

910
- v0.21.0

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.21.0"
3+
version = "0.22.0"
44
authors = [
55
"The rust-numpy Project Developers",
66
"PyO3 Project and Contributors <https://github.com/PyO3>"

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ crate-type = ["cdylib"]
3939

4040
[dependencies]
4141
pyo3 = { version = "0.22", features = ["extension-module"] }
42-
numpy = "0.21"
42+
numpy = "0.22"
4343
```
4444

4545
```rust
@@ -94,7 +94,7 @@ name = "numpy-test"
9494

9595
[dependencies]
9696
pyo3 = { version = "0.22", features = ["auto-initialize"] }
97-
numpy = "0.21"
97+
numpy = "0.22"
9898
```
9999

100100
```rust
@@ -132,7 +132,7 @@ on anything but that exact range. It can therefore be necessary to manually unif
132132
For example, if you specify the following dependencies
133133

134134
```toml
135-
numpy = "0.21"
135+
numpy = "0.22"
136136
ndarray = "0.15"
137137
```
138138

@@ -154,4 +154,3 @@ PyO3's [Contributing.md](https://github.com/PyO3/pyo3/blob/main/Contributing.md)
154154
is a nice guide for starting.
155155

156156
Also, we have a [Gitter](https://gitter.im/PyO3/Lobby) channel for communicating.
157-

0 commit comments

Comments
 (0)