diff --git a/CHANGELOG.md b/CHANGELOG.md index fece611c1da..7fedd374948 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -## 0.0.78 - TBA +## 0.0.78 - 2016-07-02 +* Rustup to *rustc 1.11.0-nightly (01411937f 2016-07-01)* * New lints: [`wrong_transmute`, `double_neg`] * For compatibility, `cargo clippy` does not defines the `clippy` feature introduced in 0.0.76 anymore diff --git a/Cargo.toml b/Cargo.toml index 5dc1363f3f5..f8b63a56257 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.0.77" +version = "0.0.78" authors = [ "Manish Goregaokar ", "Andre Bogus ", @@ -25,7 +25,7 @@ test = false [dependencies] # begin automatic update -clippy_lints = { version = "0.0.77", path = "clippy_lints" } +clippy_lints = { version = "0.0.78", path = "clippy_lints" } # end automatic update [dev-dependencies] diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index a1012e94ee5..e74db2b17a6 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.77" +version = "0.0.78" # end automatic update authors = [ "Manish Goregaokar ",