]> git.lizzy.rs Git - rust.git/commitdiff
Bump to 0.0.82
authorManish Goregaokar <manishsmail@gmail.com>
Wed, 17 Aug 2016 03:48:15 +0000 (09:18 +0530)
committerManish Goregaokar <manishsmail@gmail.com>
Wed, 17 Aug 2016 03:50:20 +0000 (09:20 +0530)
CHANGELOG.md
Cargo.toml
clippy_lints/Cargo.toml
src/main.rs

index 725cdcc10b8a2504aa4e8970fe880dec24ce5563..9e4097c099642ecda3f4fbcf648a5548ccd1b1fe 100644 (file)
@@ -1,6 +1,9 @@
 # Change Log
 All notable changes to this project will be documented in this file.
 
+## 0.0.82 — 2016-08-17
+* Rustup to *rustc 1.12.0-nightly (197be89f3 2016-08-15)*
+
 ## 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`]
index 2f1d9571e46a9d121a67f9e5db71f9bd3e261950..61d2e8bec6cc0bc3149f4d54a0d74ccb42cc031a 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "clippy"
-version = "0.0.81"
+version = "0.0.82"
 authors = [
        "Manish Goregaokar <manishsmail@gmail.com>",
        "Andre Bogus <bogusandre@gmail.com>",
@@ -25,11 +25,11 @@ test = false
 
 [dependencies]
 # begin automatic update
-clippy_lints = { version = "0.0.81", path = "clippy_lints" }
+clippy_lints = { version = "0.0.82", path = "clippy_lints" }
 # end automatic update
 
 [dev-dependencies]
-compiletest_rs = "0.2.0"
+compiletest_rs = "0.2.1"
 lazy_static = "0.1.15"
 regex = "0.1.71"
 rustc-serialize = "0.3"
index dd2bcc7cd71bc1140db1859e1ba95c00157c118b..896f4a6fb926bc0e124cc2ff626c4898fd5e1c63 100644 (file)
@@ -1,7 +1,7 @@
 [package]
 name = "clippy_lints"
 # begin automatic update
-version = "0.0.81"
+version = "0.0.82"
 # end automatic update
 authors = [
        "Manish Goregaokar <manishsmail@gmail.com>",
index f5fad298b1ddf14e9bbc3c823036843f5161cf96..e5043c927bb84c83987b38a09018400191acbbbd 100644 (file)
@@ -15,7 +15,7 @@
 use rustc::session::config::{Input, ErrorOutputType};
 use std::path::PathBuf;
 use std::process::Command;
-use syntax::{ast};
+use syntax::ast;
 
 use clippy_lints::utils::cargo;