Skip to content

Commit bfbca3e

Browse files
committed
Fix versions in README [skip ci]
1 parent 54564b0 commit bfbca3e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ There are three features corresponding to the backend implementations (`openblas
2222

2323
```toml
2424
[depencdencies]
25-
ndarray = "0.10"
26-
ndarray-linalg = { version = "0.8", features = ["openblas"] }
25+
ndarray = "0.11"
26+
ndarray-linalg = { version = "0.9", features = ["openblas"] }
2727
```
2828

2929
### link backend crate manually
@@ -32,8 +32,8 @@ You should link a LAPACKE implementation to a final crate (like binary executabl
3232

3333
```toml
3434
[depencdencies]
35-
ndarray = "0.10"
36-
ndarray-linalg = "0.8"
35+
ndarray = "0.11"
36+
ndarray-linalg = "0.9"
3737
openblas-src = "0.5" # or another backend of your choice
3838

3939
```
@@ -51,8 +51,8 @@ If you creating a library depending on this crate, we encourage you not to link
5151

5252
```toml
5353
[depencdencies]
54-
ndarray = "0.10"
55-
ndarray-linalg = { version = "0.8", default-features = false }
54+
ndarray = "0.11"
55+
ndarray-linalg = { version = "0.9", default-features = false }
5656
```
5757

5858
However, if you hope simplicity instead of the flexibility, you can link your favorite backend in the way described above.

0 commit comments

Comments
 (0)