From b19984f6d518ee49fb06abf5bf1fd6f4d8d42361 Mon Sep 17 00:00:00 2001 From: Thomas Schaller Date: Tue, 18 Sep 2018 11:11:11 +0200 Subject: [PATCH 1/3] Fix wrong documentation of ReadExpect --- src/res/data.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/res/data.rs b/src/res/data.rs index 6f277d666..186335d06 100644 --- a/src/res/data.rs +++ b/src/res/data.rs @@ -161,7 +161,7 @@ where } } -/// Allows to fetch a resource in a system mutably. +/// Allows to fetch a resource in a system immutably. /// **This will panic if the resource does not exist.** /// Usage of `Read` or `Option` is therefore recommended. /// From ffe8104757e554f71b93c6437265ffbffb6027c1 Mon Sep 17 00:00:00 2001 From: Thomas Schaller Date: Tue, 18 Sep 2018 11:27:36 +0200 Subject: [PATCH 2/3] Bump required version to 1.20 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7569d3b83..a5193bcc2 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ Please see [the benchmark](benches/bench.rs) for a bigger (and useful) example. ### Required Rust version -`1.18 stable` +`1.20 stable` ## Features From 32792d7eb782a153d574116e1ded1ff5deeb82bb Mon Sep 17 00:00:00 2001 From: Thomas Schaller Date: Tue, 18 Sep 2018 11:28:02 +0200 Subject: [PATCH 3/3] Test on 1.20 on Travis --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9d4d3f7bf..a6c981934 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ rust: - nightly - beta - stable -- 1.18.0 +- 1.20.0 branches: only: - staging