From bdb65d883dd8af3c67b2704e32067b532af0cccb Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Thu, 22 Aug 2019 18:16:34 +0300 Subject: [PATCH 1/2] :arrow_up: rand --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0c8902986..145b6ecf7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -65,7 +65,7 @@ version = "0.6" [dependencies.rand] optional = true -version = "0.6" +version = "0.7" [dependencies.serde] default-features = false From 309811891211011c61a02e5da8d62db40e356cf3 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Thu, 22 Aug 2019 20:10:43 +0300 Subject: [PATCH 2/2] bump MSRV to 1.32.0 It would be ideal not to do this, but `rand`, which is a pretty foundational crate, has 1.32.0 as MSRV, and it seems pretty unlikely that anyone uses `uuid` and does not depend on new rand via some other crate. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0058ba49e..26bacf9ed 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,7 +38,7 @@ matrix: - cargo build --target wasm32-unknown-unknown --features "v3 wasm-bindgen" - cargo build --target wasm32-unknown-unknown --features "v4 wasm-bindgen" - cargo build --target wasm32-unknown-unknown --features "v5 wasm-bindgen" - - rust: 1.31.0 + - rust: 1.32.0 script: - cargo test --features "serde std v4"