Skip to content

Commit

Permalink
Release 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jturner314 committed Sep 14, 2024
1 parent 5b54dd0 commit 6170116
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ndarray-npy"
version = "0.9.0"
version = "0.9.1"
authors = ["Jim Turner <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jturner314/ndarray-npy"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ To use with the default features:

```toml
[dependencies]
ndarray-npy = "0.9"
ndarray-npy = "0.9.1"
```

The `default` feature set includes the `compressed_npz` feature, which enables
Expand All @@ -53,7 +53,7 @@ To use without the default features:

```toml
[dependencies]
ndarray-npy = { version = "0.9", default-features = false }
ndarray-npy = { version = "0.9.1", default-features = false }
```

With `default-features = false`, `ndarray-npy` provides support only for `.npy`
Expand All @@ -73,7 +73,7 @@ For example, you can use just the `npz` feature:

```toml
[dependencies.ndarray-npy]
version = "0.9"
version = "0.9.1"
default-features = false
features = ["npz"]
```
Expand All @@ -86,7 +86,7 @@ Library authors should specify their dependency on `ndarray-npy` like this:

```toml
[dependencies.ndarray-npy]
version = "0.9"
version = "0.9.1"
default-features = false
features = [FEATURES_LIST_HERE]
```
Expand Down
4 changes: 4 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.9.1

* Removed broken links from docs.

# 0.9.0

## Breaking Changes
Expand Down

0 comments on commit 6170116

Please sign in to comment.