diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f7176f5bb3a..4c6aef22bab0 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.96 — 2016-10-22 +* Rustup to *rustc 1.14.0-nightly (f09420685 2016-10-20)* +* New lint: [`iter_skip_next`] + ## 0.0.95 — 2016-10-06 * Rustup to *rustc 1.14.0-nightly (3210fd5c2 2016-10-05)* diff --git a/Cargo.toml b/Cargo.toml index 1b8bab3dda55..e53b1db5df9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.0.95" +version = "0.0.96" authors = [ "Manish Goregaokar ", "Andre Bogus ", @@ -25,7 +25,7 @@ test = false [dependencies] # begin automatic update -clippy_lints = { version = "0.0.95", path = "clippy_lints" } +clippy_lints = { version = "0.0.96", path = "clippy_lints" } # end automatic update [dev-dependencies] diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index 300c6d46e187..55b2e8fcb665 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.95" +version = "0.0.96" # end automatic update authors = [ "Manish Goregaokar ",