diff --git a/CHANGELOG.md b/CHANGELOG.md index 7904f8accef..c48138f12b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Change Log All notable changes to this project will be documented in this file. +## 0.0.98 — 2016-11-08 +* Fixes a an issue due to a change in how cargo handles `--sysroot`, which broke `cargo clippy` + ## 0.0.97 — 2016-11-03 * For convenience, `cargo clippy` defines a `cargo-clippy` feature. This was previously added for a short time under the name `clippy` but removed for diff --git a/Cargo.toml b/Cargo.toml index 09600e7e582..7cd83c12eae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.0.97" +version = "0.0.98" authors = [ "Manish Goregaokar ", "Andre Bogus ", @@ -25,7 +25,7 @@ test = false [dependencies] # begin automatic update -clippy_lints = { version = "0.0.97", path = "clippy_lints" } +clippy_lints = { version = "0.0.98", path = "clippy_lints" } # end automatic update [dev-dependencies] diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index 71f10cbb438..b7f541e09b0 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.97" +version = "0.0.98" # end automatic update authors = [ "Manish Goregaokar ",