Skip to content

Commit 7073c5e

Browse files
committed
Ver 0.30.10
2 parents 04e777f + d5c6fbf commit 7073c5e

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Cargo.lock
55
.idea
66
.idea/*
7+
true/
78
*.csv
89
*.m
910
*.pickle

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "peroxide"
3-
version = "0.30.9"
3+
version = "0.30.10"
44
authors = ["axect <[email protected]>"]
55
edition = "2018"
66
description = "Rust comprehensive scientific computation library contains linear algebra, numerical analysis, statistics and machine learning tools with farmiliar syntax"
@@ -17,19 +17,19 @@ travis-ci = { repository = "axect/peroxide" }
1717
maintenance = { status = "actively-developed" }
1818

1919
[dev-dependencies]
20-
float-cmp = "0.8"
20+
float-cmp = "0.9"
2121

2222
[dependencies]
2323
csv = { version = "1.1", optional = true, default_features = false }
2424
rand = "0.8"
2525
rand_distr = "0.4"
2626
order-stat = "0.1"
2727
puruspe = "0.1"
28-
matrixmultiply = { version = "0.3", features = ["threading"] }
28+
matrixmultiply = { version = "0.3", features = ["threading"] }
2929
peroxide-ad = "0.3"
3030
#num-complex = "0.3"
31-
netcdf = { version = "0.6", optional = true, default_features = false }
32-
pyo3 = { version = "0.13", optional = true }
31+
netcdf = { version = "0.7", optional = true, default_features = false }
32+
pyo3 = { version = "0.15", optional = true }
3333
blas = { version = "0.22", optional = true }
3434
lapack = { version = "0.19", optional = true }
3535
serde = { version = "1.0", features = ["derive"], optional = true }

RELEASES.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Release 0.30.10 (2022-02-05)
2+
3+
* Update `netcdf` dependency to `0.7`
4+
* Fix `nc` feature issue - not compatible with hdf5 version 1.12.0
5+
* Update `pyo3` dependency to `1.15`
6+
* Update `float-cmp` dev dependency to `0.9`
7+
18
# Release 0.30.9 (2021-05-26)
29

310
* Add more trigonometric ops

0 commit comments

Comments
 (0)