Skip to content

Commit 9cd778a

Browse files
committed
Version bump
1 parent 2b9762a commit 9cd778a

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
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.169
5+
* Rustup to *rustc 1.23.0-nightly (3b82e4c74 2017-11-05)*
6+
* New lints: [`just_underscores_and_digits`], [`result_map_unwrap_or_else`], [`transmute_bytes_to_str`]
7+
48
## 0.0.168
59
* Rustup to *rustc 1.23.0-nightly (f0fe716db 2017-10-30)*
610

@@ -555,6 +559,7 @@ All notable changes to this project will be documented in this file.
555559
[`iter_nth`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#iter_nth
556560
[`iter_skip_next`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#iter_skip_next
557561
[`iterator_step_by_zero`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#iterator_step_by_zero
562+
[`just_underscores_and_digits`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#just_underscores_and_digits
558563
[`large_digit_groups`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#large_digit_groups
559564
[`large_enum_variant`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#large_enum_variant
560565
[`len_without_is_empty`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#len_without_is_empty
@@ -632,6 +637,7 @@ All notable changes to this project will be documented in this file.
632637
[`redundant_closure_call`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#redundant_closure_call
633638
[`redundant_pattern`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#redundant_pattern
634639
[`regex_macro`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#regex_macro
640+
[`result_map_unwrap_or_else`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#result_map_unwrap_or_else
635641
[`result_unwrap_used`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#result_unwrap_used
636642
[`reverse_range_loop`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#reverse_range_loop
637643
[`search_is_some`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#search_is_some
@@ -659,6 +665,7 @@ All notable changes to this project will be documented in this file.
659665
[`temporary_cstring_as_ptr`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#temporary_cstring_as_ptr
660666
[`too_many_arguments`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#too_many_arguments
661667
[`toplevel_ref_arg`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#toplevel_ref_arg
668+
[`transmute_bytes_to_str`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#transmute_bytes_to_str
662669
[`transmute_int_to_bool`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#transmute_int_to_bool
663670
[`transmute_int_to_char`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#transmute_int_to_char
664671
[`transmute_int_to_float`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#transmute_int_to_float

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clippy"
3-
version = "0.0.168"
3+
version = "0.0.169"
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.168", path = "clippy_lints" }
40+
clippy_lints = { version = "0.0.169", path = "clippy_lints" }
4141
# end automatic update
4242
cargo_metadata = "0.2"
4343

clippy_lints/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.168"
4+
version = "0.0.169"
55
# end automatic update
66
authors = [
77
"Manish Goregaokar <[email protected]>",

clippy_lints/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,8 +374,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
374374
methods::FILTER_MAP,
375375
methods::OPTION_MAP_UNWRAP_OR,
376376
methods::OPTION_MAP_UNWRAP_OR_ELSE,
377-
methods::RESULT_MAP_UNWRAP_OR_ELSE,
378377
methods::OPTION_UNWRAP_USED,
378+
methods::RESULT_MAP_UNWRAP_OR_ELSE,
379379
methods::RESULT_UNWRAP_USED,
380380
methods::WRONG_PUB_SELF_CONVENTION,
381381
misc::USED_UNDERSCORE_BINDING,
@@ -543,6 +543,7 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
543543
new_without_default::NEW_WITHOUT_DEFAULT_DERIVE,
544544
no_effect::NO_EFFECT,
545545
no_effect::UNNECESSARY_OPERATION,
546+
non_expressive_names::JUST_UNDERSCORES_AND_DIGITS,
546547
non_expressive_names::MANY_SINGLE_CHAR_NAMES,
547548
ok_if_let::IF_LET_SOME_RESULT,
548549
open_options::NONSENSICAL_OPEN_OPTIONS,
@@ -570,6 +571,7 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
570571
swap::MANUAL_SWAP,
571572
temporary_assignment::TEMPORARY_ASSIGNMENT,
572573
transmute::CROSSPOINTER_TRANSMUTE,
574+
transmute::TRANSMUTE_BYTES_TO_STR,
573575
transmute::TRANSMUTE_INT_TO_BOOL,
574576
transmute::TRANSMUTE_INT_TO_CHAR,
575577
transmute::TRANSMUTE_INT_TO_FLOAT,

0 commit comments

Comments
 (0)