From 338690b4e9b7e2dfd5f7fbda8359631597f3af56 Mon Sep 17 00:00:00 2001 From: mcarton Date: Wed, 23 Nov 2016 21:25:44 +0100 Subject: [PATCH] Bump to 0.0.101 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 4 ++-- clippy_lints/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14bf8ba16090..21dc43c4197a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,16 @@ # Change Log All notable changes to this project will be documented in this file. +## 0.0.101 — 2016-11-23 +* Update to *rustc 1.15.0-nightly (7b3eeea22 2016-11-21)* +* New lint: [`string_extend_chars`] + ## 0.0.100 — 2016-11-20 * Update to *rustc 1.15.0-nightly (ac635aa95 2016-11-18)* ## 0.0.99 — 2016-11-18 * Update to rustc 1.15.0-nightly (0ed951993 2016-11-14) +* New lint: [`get_unwrap`] ## 0.0.98 — 2016-11-08 * Fixes a an issue due to a change in how cargo handles `--sysroot`, which broke `cargo clippy` @@ -16,6 +21,7 @@ All notable changes to this project will be documented in this file. compatibility. * `cargo clippy --help` is more helping (and less helpful :smile:) * Rustup to *rustc 1.14.0-nightly (5665bdf3e 2016-11-02)* +* New lints: [`if_let_redundant_pattern_matching`], [`partialeq_ne_impl`] ## 0.0.96 — 2016-10-22 * Rustup to *rustc 1.14.0-nightly (f09420685 2016-10-20)* diff --git a/Cargo.toml b/Cargo.toml index 039ef9e1a1a4..49957dd40f91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.0.100" +version = "0.0.101" authors = [ "Manish Goregaokar ", "Andre Bogus ", @@ -25,7 +25,7 @@ test = false [dependencies] # begin automatic update -clippy_lints = { version = "0.0.100", path = "clippy_lints" } +clippy_lints = { version = "0.0.101", path = "clippy_lints" } # end automatic update [dev-dependencies] diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index c7b0b3577d8c..07eebae08f92 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.100" +version = "0.0.101" # end automatic update authors = [ "Manish Goregaokar ",