From 83748f5e484c9b76db08080d56da55c31288874a Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Fri, 30 Mar 2018 10:35:51 +0200 Subject: [PATCH 1/3] Rustup to rustc 1.26.0-nightly (ae544ee1c 2018-03-29) --- clippy_lints/src/utils/paths.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/utils/paths.rs b/clippy_lints/src/utils/paths.rs index 9dc4998dfc5..eecae8b230b 100644 --- a/clippy_lints/src/utils/paths.rs +++ b/clippy_lints/src/utils/paths.rs @@ -57,7 +57,7 @@ pub const OPTION_SOME: [&str; 4] = ["core", "option", "Option", "Some"]; pub const PTR_NULL: [&str; 2] = ["ptr", "null"]; pub const PTR_NULL_MUT: [&str; 2] = ["ptr", "null_mut"]; pub const RANGE: [&str; 3] = ["core", "ops", "Range"]; -pub const RANGE_ARGUMENT_TRAIT: [&str; 3] = ["core", "ops", "RangeBound"]; +pub const RANGE_ARGUMENT_TRAIT: [&str; 3] = ["core", "ops", "RangeBounds"]; pub const RANGE_FROM: [&str; 3] = ["core", "ops", "RangeFrom"]; pub const RANGE_FROM_STD: [&str; 3] = ["std", "ops", "RangeFrom"]; pub const RANGE_FULL: [&str; 3] = ["core", "ops", "RangeFull"]; From 1d5dc3d180cb6f89cbe727b73d45df6582999a38 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Fri, 30 Mar 2018 10:38:35 +0200 Subject: [PATCH 2/3] Update changelog for 0.191 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8c91e6903d..aa32e773e90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Change Log All notable changes to this project will be documented in this file. +## 0.0.191 +* Rustup to *rustc 1.26.0-nightly (ae544ee1c 2018-03-29)* +* Lint audit; categorize lints as style, correctness, complexity, pedantic, nursery, restriction. + ## 0.0.190 * Fix a bunch of intermittent cargo bugs From b09e11540421fb32bafa380eedbda945b81cc171 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Fri, 30 Mar 2018 10:38:42 +0200 Subject: [PATCH 3/3] Bump to 0.191 --- Cargo.toml | 4 ++-- clippy_lints/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a28e5c50929..546f180a083 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.0.190" +version = "0.0.191" authors = [ "Manish Goregaokar ", "Andre Bogus ", @@ -37,7 +37,7 @@ path = "src/driver.rs" [dependencies] # begin automatic update -clippy_lints = { version = "0.0.190", path = "clippy_lints" } +clippy_lints = { version = "0.0.191", path = "clippy_lints" } # end automatic update regex = "0.2" semver = "0.9" diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index e8d08082d4d..bb29cfd3a01 100644 --- a/clippy_lints/Cargo.toml +++ b/clippy_lints/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clippy_lints" # begin automatic update -version = "0.0.190" +version = "0.0.191" # end automatic update authors = [ "Manish Goregaokar ",