Skip to content

Commit 74a8180

Browse files
authored
Merge pull request #70 from xd009642/chore/prepare_for_release
Bump version and dependencies post ndarray 0.14
2 parents 1510485 + bc2a278 commit 74a8180

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ addons:
77
- libssl-dev
88
cache: cargo
99
rust:
10-
- 1.37.0
10+
- 1.42.0
1111
- stable
1212
- beta
1313
- nightly
@@ -16,7 +16,7 @@ matrix:
1616
- rust: nightly
1717
before_cache: |
1818
if [[ "$TRAVIS_RUST_VERSION" == nightly ]]; then
19-
RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install cargo-tarpaulin -f
19+
cargo install cargo-tarpaulin -f
2020
fi
2121
before_script:
2222
- rustup component add rustfmt

Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ndarray-stats"
3-
version = "0.3.1-alpha.0"
3+
version = "0.4.0"
44
authors = ["Jim Turner <[email protected]>", "LukeMathWalker <[email protected]>"]
55
edition = "2018"
66

@@ -16,22 +16,22 @@ keywords = ["array", "multidimensional", "statistics", "matrix", "ndarray"]
1616
categories = ["data-structures", "science"]
1717

1818
[dependencies]
19-
ndarray = "0.13"
19+
ndarray = "0.14"
2020
noisy_float = "0.1.8"
2121
num-integer = "0.1"
2222
num-traits = "0.2"
2323
rand = "0.7"
24-
itertools = { version = "0.8.0", default-features = false }
24+
itertools = { version = "0.9.0", default-features = false }
2525
indexmap = "1.0"
2626

2727
[dev-dependencies]
28-
ndarray = { version = "0.13", features = ["approx"] }
29-
criterion = "0.2"
30-
quickcheck = { version = "0.8.1", default-features = false }
31-
ndarray-rand = "0.11"
32-
approx = "0.3"
33-
quickcheck_macros = "0.8"
34-
num-bigint = "0.2.2"
28+
ndarray = { version = "0.14", features = ["approx"] }
29+
criterion = "0.3"
30+
quickcheck = { version = "0.9.2", default-features = false }
31+
ndarray-rand = "0.12"
32+
approx = "0.4"
33+
quickcheck_macros = "0.9"
34+
num-bigint = "0.3.1"
3535

3636
[[bench]]
3737
name = "sort"

0 commit comments

Comments
 (0)