version bump and changelog update

This commit is contained in:
Oliver Schneider 2016-08-17 18:07:25 +02:00
parent 40720a61e8
commit 6daa884e4f
No known key found for this signature in database
GPG Key ID: 56D6EEA0FC67AC46
3 changed files with 8 additions and 5 deletions

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "clippy"
version = "0.0.82"
version = "0.0.83"
authors = [
"Manish Goregaokar <manishsmail@gmail.com>",
"Andre Bogus <bogusandre@gmail.com>",
@ -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]

View File

@ -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 <manishsmail@gmail.com>",