Bump to 0.0.77

This commit is contained in:
mcarton 2016-06-21 16:26:56 +02:00
parent e6cbe970c8
commit 92c02bd4af
No known key found for this signature in database
GPG Key ID: 5E427C794CBA45E8
3 changed files with 8 additions and 4 deletions

View File

@ -1,7 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.
## 0.0.76 — TBD
## 0.0.77 — 2016-06-21
* Rustup to *rustc 1.11.0-nightly (5522e678b 2016-06-20)*
* New lints: [`stutter`] and [`iter_nth`]
## 0.0.76 — 2016-06-10
* Rustup to *rustc 1.11.0-nightly (7d2f75a95 2016-06-09)*
* `cargo clippy` now automatically defines the `clippy` feature

View File

@ -1,6 +1,6 @@
[package]
name = "clippy"
version = "0.0.76"
version = "0.0.77"
authors = [
"Manish Goregaokar <manishsmail@gmail.com>",
"Andre Bogus <bogusandre@gmail.com>",
@ -25,7 +25,7 @@ test = false
[dependencies]
regex_macros = { version = "0.1.33", optional = true }
# begin automatic update
clippy_lints = { version = "0.0.76", path = "clippy_lints" }
clippy_lints = { version = "0.0.77", path = "clippy_lints" }
# end automatic update
[dev-dependencies]

View File

@ -1,7 +1,7 @@
[package]
name = "clippy_lints"
# begin automatic update
version = "0.0.76"
version = "0.0.77"
# end automatic update
authors = [
"Manish Goregaokar <manishsmail@gmail.com>",