]> git.lizzy.rs Git - rust.git/commitdiff
Bump the version
authorOliver Schneider <git-spam-no-reply9815368754983@oli-obk.de>
Thu, 27 Apr 2017 12:11:35 +0000 (14:11 +0200)
committerOliver Schneider <git-spam-no-reply9815368754983@oli-obk.de>
Thu, 27 Apr 2017 12:13:14 +0000 (14:13 +0200)
CHANGELOG.md
Cargo.toml
README.md
clippy_lints/Cargo.toml
clippy_lints/src/lib.rs

index 8da893dededf2e2ff9997754586d94d4df13e6a5..0d474709b070326c2ea3588c50ea6d87d258103a 100644 (file)
@@ -1,6 +1,10 @@
 # Change Log
 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
 * Update to *rustc 1.18.0-nightly (2bd4b5c6d 2017-04-23)*
 
index 6b72881508bc4c0e2c6cccad40a5519541f95758..9a2e0b1327273d059f7dfeedc25cc034782e60b5 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "clippy"
-version = "0.0.126"
+version = "0.0.127"
 authors = [
        "Manish Goregaokar <manishsmail@gmail.com>",
        "Andre Bogus <bogusandre@gmail.com>",
@@ -30,7 +30,7 @@ test = false
 
 [dependencies]
 # begin automatic update
-clippy_lints = { version = "0.0.126", path = "clippy_lints" }
+clippy_lints = { version = "0.0.127", path = "clippy_lints" }
 # end automatic update
 cargo_metadata = "0.1.1"
 
index 8d60c8f60f52e5bc97d049b456d4a323b93df812..f96f0f9af48fddd382a1ddc0ad847697924dc353 100644 (file)
--- a/README.md
+++ b/README.md
@@ -180,7 +180,7 @@ transparently:
 
 ## Lints
 
-There are 197 lints included in this crate:
+There are 198 lints included in this crate:
 
 name                                                                                                                   | default | triggers on
 -----------------------------------------------------------------------------------------------------------------------|---------|----------------------------------------------------------------------------------------------------------------------------------
index d3ad7e8c9178cd8ea689927d7b2c55ecc2eb5138..77464c0fe9fb69617ba93e6f856e5cb705eaabe9 100644 (file)
@@ -1,7 +1,7 @@
 [package]
 name = "clippy_lints"
 # begin automatic update
-version = "0.0.126"
+version = "0.0.127"
 # end automatic update
 authors = [
        "Manish Goregaokar <manishsmail@gmail.com>",
index 0c43f63d03bf3db189080682fae6b0a627baf90d..29ecf105b65b02a61a7b5396d103fe5a17296eb9 100644 (file)
@@ -105,8 +105,8 @@ macro_rules! declare_restriction_lint {
 pub mod mutex_atomic;
 pub mod needless_bool;
 pub mod needless_borrow;
-pub mod needless_pass_by_value;
 pub mod needless_continue;
+pub mod needless_pass_by_value;
 pub mod needless_update;
 pub mod neg_multiply;
 pub mod new_without_default;
@@ -461,8 +461,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
         needless_bool::BOOL_COMPARISON,
         needless_bool::NEEDLESS_BOOL,
         needless_borrow::NEEDLESS_BORROW,
-        needless_pass_by_value::NEEDLESS_PASS_BY_VALUE,
         needless_continue::NEEDLESS_CONTINUE,
+        needless_pass_by_value::NEEDLESS_PASS_BY_VALUE,
         needless_update::NEEDLESS_UPDATE,
         neg_multiply::NEG_MULTIPLY,
         new_without_default::NEW_WITHOUT_DEFAULT,