File tree Expand file tree Collapse file tree 3 files changed +24
-6
lines changed Expand file tree Collapse file tree 3 files changed +24
-6
lines changed Original file line number Diff line number Diff line change 11[package ]
22
33name = " ndarray"
4- version = " 0.15.0 "
4+ version = " 0.15.1 "
55edition = " 2018"
66authors = [
77 " bluss" ,
Original file line number Diff line number Diff line change @@ -117,15 +117,15 @@ end-user projects (not libraries) should select provider::
117117
118118 [dependencies]
119119 ndarray = { version = "0.15.0", features = ["blas"] }
120- blas-src = { version = "0.7.0 ", features = ["openblas"] }
121- openblas-src = { version = "0.9 ", features = ["cblas", "system"] }
120+ blas-src = { version = "0.8 ", features = ["openblas"] }
121+ openblas-src = { version = "0.10 ", features = ["cblas", "system"] }
122122
123123Using system-installed dependencies can save a long time building dependencies.
124124An example configuration using (compiled) netlib is shown below anyway::
125125
126126 [dependencies]
127127 ndarray = { version = "0.15.0", features = ["blas"] }
128- blas-src = { version = "0.7 .0", default-features = false, features = ["netlib"] }
128+ blas-src = { version = "0.8 .0", default-features = false, features = ["netlib"] }
129129
130130When this is done, your program must also link to ``blas_src `` by using it or
131131explicitly including it in your code::
Original file line number Diff line number Diff line change @@ -4,8 +4,26 @@ Version 0.15.1 (not released yet)
44Enhancements
55------------
66
7- - Arrays and views now implement PartialEq so that it's possible to compare
8- arrays with references to arrays and vice versa by [ @bluss ]
7+ - Arrays and views now have additional PartialEq impls so that it's possible to
8+ compare arrays with references to arrays and vice versa by [ @bluss ]
9+
10+ https://github.com/rust-ndarray/ndarray/pull/958
11+
12+ Bug fixes
13+ ---------
14+
15+ - Fix panic in creation of ` .windows() ` producer from negative stride array by
16+ [ @bluss ]
17+
18+ https://github.com/rust-ndarray/ndarray/pull/957
19+
20+ Other changes
21+ -------------
22+
23+ - Update BLAS documentation further by @bluss
24+
25+ https://github.com/rust-ndarray/ndarray/pull/955 <br >
26+ https://github.com/rust-ndarray/ndarray/pull/959
927
1028
1129Version 0.15.0 (2021-03-25)
You can’t perform that action at this time.
0 commit comments