Skip to content

Commit 8123495

Browse files
committed
Version bump
1 parent 39d1d60 commit 8123495

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## 0.0.184
5+
* Rustup to *rustc 1.25.0-nightly (90eb44a58 2018-01-29)*
6+
* New lints: [`double_comparisons`], [`empty_line_after_outer_attr`]
7+
48
## 0.0.183
59
* Rustup to *rustc 1.25.0-nightly (21882aad7 2018-01-28)*
610
* New lint: [`misaligned_transmute`]
@@ -554,13 +558,15 @@ All notable changes to this project will be documented in this file.
554558
[`derive_hash_xor_eq`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#derive_hash_xor_eq
555559
[`diverging_sub_expression`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#diverging_sub_expression
556560
[`doc_markdown`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#doc_markdown
561+
[`double_comparisons`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#double_comparisons
557562
[`double_neg`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#double_neg
558563
[`double_parens`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#double_parens
559564
[`drop_copy`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#drop_copy
560565
[`drop_ref`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#drop_ref
561566
[`duplicate_underscore_argument`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#duplicate_underscore_argument
562567
[`else_if_without_else`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#else_if_without_else
563568
[`empty_enum`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#empty_enum
569+
[`empty_line_after_outer_attr`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#empty_line_after_outer_attr
564570
[`empty_loop`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#empty_loop
565571
[`enum_clike_unportable_variant`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#enum_clike_unportable_variant
566572
[`enum_glob_use`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#enum_glob_use

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clippy"
3-
version = "0.0.183"
3+
version = "0.0.184"
44
authors = [
55
"Manish Goregaokar <[email protected]>",
66
"Andre Bogus <[email protected]>",
@@ -37,7 +37,7 @@ path = "src/driver.rs"
3737

3838
[dependencies]
3939
# begin automatic update
40-
clippy_lints = { version = "0.0.183", path = "clippy_lints" }
40+
clippy_lints = { version = "0.0.184", path = "clippy_lints" }
4141
# end automatic update
4242
cargo_metadata = "0.2"
4343
regex = "0.2"

clippy_lints/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "clippy_lints"
33
# begin automatic update
4-
version = "0.0.183"
4+
version = "0.0.184"
55
# end automatic update
66
authors = [
77
"Manish Goregaokar <[email protected]>",

clippy_lints/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -438,9 +438,9 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
438438
assign_ops::ASSIGN_OP_PATTERN,
439439
assign_ops::MISREFACTORED_ASSIGN_OP,
440440
attrs::DEPRECATED_SEMVER,
441+
attrs::EMPTY_LINE_AFTER_OUTER_ATTR,
441442
attrs::INLINE_ALWAYS,
442443
attrs::USELESS_ATTRIBUTE,
443-
attrs::EMPTY_LINE_AFTER_OUTER_ATTR,
444444
bit_mask::BAD_BIT_MASK,
445445
bit_mask::INEFFECTIVE_BIT_MASK,
446446
bit_mask::VERBOSE_BIT_MASK,
@@ -458,6 +458,7 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
458458
derive::DERIVE_HASH_XOR_EQ,
459459
derive::EXPL_IMPL_CLONE_ON_COPY,
460460
doc::DOC_MARKDOWN,
461+
double_comparison::DOUBLE_COMPARISONS,
461462
double_parens::DOUBLE_PARENS,
462463
drop_forget_ref::DROP_COPY,
463464
drop_forget_ref::DROP_REF,

0 commit comments

Comments
 (0)