From 6daa884e4fddb6d5b04c2f2fe28fde2df950ffc1 Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Wed, 17 Aug 2016 18:07:25 +0200 Subject: [PATCH] version bump and changelog update --- CHANGELOG.md | 7 +++++-- Cargo.toml | 4 ++-- clippy_lints/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0c6454b2ae6..c92ad5ca1402 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,17 @@ # Change Log All notable changes to this project will be documented in this file. -## 0.0.83 — TBD +## 0.0.84 — TBD + +## 0.0.83 — 2016-08-17 +* Rustup to *rustc 1.12.0-nightly (1bf5fa326 2016-08-16)* * New lints: [`print_with_newline`], [`useless_attribute`] ## 0.0.82 — 2016-08-17 * Rustup to *rustc 1.12.0-nightly (197be89f3 2016-08-15)* * New lint: [`module_inception`] -## 0.0.81 - 2016-08-14 +## 0.0.81 — 2016-08-14 * Rustup to *rustc 1.12.0-nightly (1deb02ea6 2016-08-12)* * New lints: [`eval_order_dependence`], [`mixed_case_hex_literals`], [`unseparated_literal_suffix`] * False positive fix in [`too_many_arguments`] diff --git a/Cargo.toml b/Cargo.toml index 61d2e8bec6cc..df7301cf2948 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clippy" -version = "0.0.82" +version = "0.0.83" authors = [ "Manish Goregaokar ", "Andre Bogus ", @@ -25,7 +25,7 @@ test = false [dependencies] # begin automatic update -clippy_lints = { version = "0.0.82", path = "clippy_lints" } +clippy_lints = { version = "0.0.83", path = "clippy_lints" } # end automatic update [dev-dependencies] diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index 896f4a6fb926..49fdd2ae7148 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.82" +version = "0.0.83" # end automatic update authors = [ "Manish Goregaokar ",