Bump to 0.0.82

This commit is contained in:
Manish Goregaokar 2016-08-17 09:18:15 +05:30
parent 9aa7701262
commit f006805c4a
No known key found for this signature in database
GPG Key ID: 3BBF4D3E2EF79F98
4 changed files with 8 additions and 5 deletions

View 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`]

View 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"

View 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>",

View File

@ -15,7 +15,7 @@ use rustc::session::{config, Session};
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;