1
1
# Change Log
2
2
All notable changes to this project will be documented in this file.
3
3
4
+ ## 0.0.166
5
+ * Rustup to * rustc 1.22.0-nightly (b7960878b 2017-10-18)*
6
+ * New lints: [ ` explicit_write ` ] , [ ` identity_conversion ` ] , [ ` implicit_hasher ` ] , [ ` invalid_ref ` ] , [ ` option_map_or_none ` ] , [ ` range_minus_one ` ] , [ ` range_plus_one ` ] , [ ` transmute_int_to_bool ` ] , [ ` transmute_int_to_char ` ] , [ ` transmute_int_to_float ` ]
7
+
4
8
## 0.0.165
5
9
* Rust upgrade to rustc 1.22.0-nightly (0e6f4cf51 2017-09-27)
6
10
* New lint: [ ` mut_range_bound ` ]
@@ -505,6 +509,7 @@ All notable changes to this project will be documented in this file.
505
509
[ `explicit_counter_loop` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#explicit_counter_loop
506
510
[ `explicit_into_iter_loop` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#explicit_into_iter_loop
507
511
[ `explicit_iter_loop` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#explicit_iter_loop
512
+ [ `explicit_write` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#explicit_write
508
513
[ `extend_from_slice` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#extend_from_slice
509
514
[ `filter_map` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#filter_map
510
515
[ `filter_next` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#filter_next
@@ -516,19 +521,22 @@ All notable changes to this project will be documented in this file.
516
521
[ `forget_copy` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#forget_copy
517
522
[ `forget_ref` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#forget_ref
518
523
[ `get_unwrap` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#get_unwrap
524
+ [ `identity_conversion` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#identity_conversion
519
525
[ `identity_op` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#identity_op
520
526
[ `if_let_redundant_pattern_matching` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#if_let_redundant_pattern_matching
521
527
[ `if_let_some_result` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#if_let_some_result
522
528
[ `if_not_else` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#if_not_else
523
529
[ `if_same_then_else` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#if_same_then_else
524
530
[ `ifs_same_cond` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#ifs_same_cond
531
+ [ `implicit_hasher` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#implicit_hasher
525
532
[ `inconsistent_digit_grouping` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#inconsistent_digit_grouping
526
533
[ `indexing_slicing` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#indexing_slicing
527
534
[ `ineffective_bit_mask` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#ineffective_bit_mask
528
535
[ `infinite_iter` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#infinite_iter
529
536
[ `inline_always` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#inline_always
530
537
[ `int_plus_one` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#int_plus_one
531
538
[ `integer_arithmetic` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#integer_arithmetic
539
+ [ `invalid_ref` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#invalid_ref
532
540
[ `invalid_regex` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#invalid_regex
533
541
[ `invalid_upcast_comparisons` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#invalid_upcast_comparisons
534
542
[ `items_after_statements` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#items_after_statements
@@ -590,6 +598,7 @@ All notable changes to this project will be documented in this file.
590
598
[ `not_unsafe_ptr_arg_deref` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#not_unsafe_ptr_arg_deref
591
599
[ `ok_expect` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#ok_expect
592
600
[ `op_ref` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#op_ref
601
+ [ `option_map_or_none` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#option_map_or_none
593
602
[ `option_map_unwrap_or` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#option_map_unwrap_or
594
603
[ `option_map_unwrap_or_else` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#option_map_unwrap_or_else
595
604
[ `option_unwrap_used` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#option_unwrap_used
@@ -604,6 +613,8 @@ All notable changes to this project will be documented in this file.
604
613
[ `print_with_newline` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#print_with_newline
605
614
[ `ptr_arg` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#ptr_arg
606
615
[ `pub_enum_variant_names` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#pub_enum_variant_names
616
+ [ `range_minus_one` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#range_minus_one
617
+ [ `range_plus_one` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#range_plus_one
607
618
[ `range_step_by_zero` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#range_step_by_zero
608
619
[ `range_zip_with_len` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#range_zip_with_len
609
620
[ `redundant_closure` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#redundant_closure
@@ -637,6 +648,9 @@ All notable changes to this project will be documented in this file.
637
648
[ `temporary_cstring_as_ptr` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#temporary_cstring_as_ptr
638
649
[ `too_many_arguments` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#too_many_arguments
639
650
[ `toplevel_ref_arg` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#toplevel_ref_arg
651
+ [ `transmute_int_to_bool` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#transmute_int_to_bool
652
+ [ `transmute_int_to_char` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#transmute_int_to_char
653
+ [ `transmute_int_to_float` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#transmute_int_to_float
640
654
[ `transmute_ptr_to_ref` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#transmute_ptr_to_ref
641
655
[ `trivial_regex` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#trivial_regex
642
656
[ `type_complexity` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#type_complexity
0 commit comments