Bump the version
This commit is contained in:
parent
3b73663506
commit
9abef6affd
5 changed files with 10 additions and 6 deletions
|
@ -1,6 +1,10 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## 0.0.127 — 2017-04-24
|
||||||
|
* Update to *rustc 1.18.0-nightly (036983201 2017-04-26)*
|
||||||
|
* New lint: [`needless_continue`]
|
||||||
|
|
||||||
## 0.0.126 — 2017-04-24
|
## 0.0.126 — 2017-04-24
|
||||||
* Update to *rustc 1.18.0-nightly (2bd4b5c6d 2017-04-23)*
|
* Update to *rustc 1.18.0-nightly (2bd4b5c6d 2017-04-23)*
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "clippy"
|
name = "clippy"
|
||||||
version = "0.0.126"
|
version = "0.0.127"
|
||||||
authors = [
|
authors = [
|
||||||
"Manish Goregaokar <manishsmail@gmail.com>",
|
"Manish Goregaokar <manishsmail@gmail.com>",
|
||||||
"Andre Bogus <bogusandre@gmail.com>",
|
"Andre Bogus <bogusandre@gmail.com>",
|
||||||
|
@ -30,7 +30,7 @@ test = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# begin automatic update
|
# begin automatic update
|
||||||
clippy_lints = { version = "0.0.126", path = "clippy_lints" }
|
clippy_lints = { version = "0.0.127", path = "clippy_lints" }
|
||||||
# end automatic update
|
# end automatic update
|
||||||
cargo_metadata = "0.1.1"
|
cargo_metadata = "0.1.1"
|
||||||
|
|
||||||
|
|
|
@ -180,7 +180,7 @@ transparently:
|
||||||
|
|
||||||
## Lints
|
## Lints
|
||||||
|
|
||||||
There are 197 lints included in this crate:
|
There are 198 lints included in this crate:
|
||||||
|
|
||||||
name | default | triggers on
|
name | default | triggers on
|
||||||
-----------------------------------------------------------------------------------------------------------------------|---------|----------------------------------------------------------------------------------------------------------------------------------
|
-----------------------------------------------------------------------------------------------------------------------|---------|----------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "clippy_lints"
|
name = "clippy_lints"
|
||||||
# begin automatic update
|
# begin automatic update
|
||||||
version = "0.0.126"
|
version = "0.0.127"
|
||||||
# end automatic update
|
# end automatic update
|
||||||
authors = [
|
authors = [
|
||||||
"Manish Goregaokar <manishsmail@gmail.com>",
|
"Manish Goregaokar <manishsmail@gmail.com>",
|
||||||
|
|
|
@ -105,8 +105,8 @@ pub mod mut_reference;
|
||||||
pub mod mutex_atomic;
|
pub mod mutex_atomic;
|
||||||
pub mod needless_bool;
|
pub mod needless_bool;
|
||||||
pub mod needless_borrow;
|
pub mod needless_borrow;
|
||||||
pub mod needless_pass_by_value;
|
|
||||||
pub mod needless_continue;
|
pub mod needless_continue;
|
||||||
|
pub mod needless_pass_by_value;
|
||||||
pub mod needless_update;
|
pub mod needless_update;
|
||||||
pub mod neg_multiply;
|
pub mod neg_multiply;
|
||||||
pub mod new_without_default;
|
pub mod new_without_default;
|
||||||
|
@ -461,8 +461,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
|
||||||
needless_bool::BOOL_COMPARISON,
|
needless_bool::BOOL_COMPARISON,
|
||||||
needless_bool::NEEDLESS_BOOL,
|
needless_bool::NEEDLESS_BOOL,
|
||||||
needless_borrow::NEEDLESS_BORROW,
|
needless_borrow::NEEDLESS_BORROW,
|
||||||
needless_pass_by_value::NEEDLESS_PASS_BY_VALUE,
|
|
||||||
needless_continue::NEEDLESS_CONTINUE,
|
needless_continue::NEEDLESS_CONTINUE,
|
||||||
|
needless_pass_by_value::NEEDLESS_PASS_BY_VALUE,
|
||||||
needless_update::NEEDLESS_UPDATE,
|
needless_update::NEEDLESS_UPDATE,
|
||||||
neg_multiply::NEG_MULTIPLY,
|
neg_multiply::NEG_MULTIPLY,
|
||||||
new_without_default::NEW_WITHOUT_DEFAULT,
|
new_without_default::NEW_WITHOUT_DEFAULT,
|
||||||
|
|
Loading…
Add table
Reference in a new issue