@@ -22,7 +22,7 @@ Current beta, release 2020-11-19
2222* [ ` map_err_ignore ` ] [ #5998 ] ( https://github.com/rust-lang/rust-clippy/pull/5998 )
2323* [ ` rc_buffer ` ] [ #6044 ] ( https://github.com/rust-lang/rust-clippy/pull/6044 )
2424* [ ` to_string_in_display ` ] [ #5831 ] ( https://github.com/rust-lang/rust-clippy/pull/5831 )
25- * [ ` single_char_push_str ` ] [ #5881 ] ( https://github.com/rust-lang/rust-clippy/pull/5881 )
25+ * ` single_char_push_str ` [ #5881 ] ( https://github.com/rust-lang/rust-clippy/pull/5881 )
2626
2727### Moves and Deprecations
2828
@@ -1665,6 +1665,7 @@ Released 2018-09-13
16651665[ `cognitive_complexity` ] : https://rust-lang.github.io/rust-clippy/master/index.html#cognitive_complexity
16661666[ `collapsible_if` ] : https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if
16671667[ `comparison_chain` ] : https://rust-lang.github.io/rust-clippy/master/index.html#comparison_chain
1668+ [ `comparison_to_empty` ] : https://rust-lang.github.io/rust-clippy/master/index.html#comparison_to_empty
16681669[ `copy_iterator` ] : https://rust-lang.github.io/rust-clippy/master/index.html#copy_iterator
16691670[ `create_dir` ] : https://rust-lang.github.io/rust-clippy/master/index.html#create_dir
16701671[ `crosspointer_transmute` ] : https://rust-lang.github.io/rust-clippy/master/index.html#crosspointer_transmute
@@ -1731,6 +1732,7 @@ Released 2018-09-13
17311732[ `for_loops_over_fallibles` ] : https://rust-lang.github.io/rust-clippy/master/index.html#for_loops_over_fallibles
17321733[ `forget_copy` ] : https://rust-lang.github.io/rust-clippy/master/index.html#forget_copy
17331734[ `forget_ref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#forget_ref
1735+ [ `from_iter_instead_of_collect` ] : https://rust-lang.github.io/rust-clippy/master/index.html#from_iter_instead_of_collect
17341736[ `future_not_send` ] : https://rust-lang.github.io/rust-clippy/master/index.html#future_not_send
17351737[ `get_last_with_len` ] : https://rust-lang.github.io/rust-clippy/master/index.html#get_last_with_len
17361738[ `get_unwrap` ] : https://rust-lang.github.io/rust-clippy/master/index.html#get_unwrap
@@ -1795,13 +1797,15 @@ Released 2018-09-13
17951797[ `manual_async_fn` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_async_fn
17961798[ `manual_memcpy` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_memcpy
17971799[ `manual_non_exhaustive` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_non_exhaustive
1800+ [ `manual_ok_or` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_ok_or
17981801[ `manual_range_contains` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_range_contains
17991802[ `manual_saturating_arithmetic` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_saturating_arithmetic
18001803[ `manual_strip` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_strip
18011804[ `manual_swap` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_swap
18021805[ `manual_unwrap_or` ] : https://rust-lang.github.io/rust-clippy/master/index.html#manual_unwrap_or
18031806[ `many_single_char_names` ] : https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names
18041807[ `map_clone` ] : https://rust-lang.github.io/rust-clippy/master/index.html#map_clone
1808+ [ `map_collect_result_unit` ] : https://rust-lang.github.io/rust-clippy/master/index.html#map_collect_result_unit
18051809[ `map_entry` ] : https://rust-lang.github.io/rust-clippy/master/index.html#map_entry
18061810[ `map_err_ignore` ] : https://rust-lang.github.io/rust-clippy/master/index.html#map_err_ignore
18071811[ `map_flatten` ] : https://rust-lang.github.io/rust-clippy/master/index.html#map_flatten
@@ -1917,6 +1921,7 @@ Released 2018-09-13
19171921[ `redundant_pub_crate` ] : https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pub_crate
19181922[ `redundant_static_lifetimes` ] : https://rust-lang.github.io/rust-clippy/master/index.html#redundant_static_lifetimes
19191923[ `ref_in_deref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#ref_in_deref
1924+ [ `ref_option_ref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#ref_option_ref
19201925[ `regex_macro` ] : https://rust-lang.github.io/rust-clippy/master/index.html#regex_macro
19211926[ `repeat_once` ] : https://rust-lang.github.io/rust-clippy/master/index.html#repeat_once
19221927[ `replace_consts` ] : https://rust-lang.github.io/rust-clippy/master/index.html#replace_consts
@@ -1937,8 +1942,8 @@ Released 2018-09-13
19371942[ `should_assert_eq` ] : https://rust-lang.github.io/rust-clippy/master/index.html#should_assert_eq
19381943[ `should_implement_trait` ] : https://rust-lang.github.io/rust-clippy/master/index.html#should_implement_trait
19391944[ `similar_names` ] : https://rust-lang.github.io/rust-clippy/master/index.html#similar_names
1945+ [ `single_char_add_str` ] : https://rust-lang.github.io/rust-clippy/master/index.html#single_char_add_str
19401946[ `single_char_pattern` ] : https://rust-lang.github.io/rust-clippy/master/index.html#single_char_pattern
1941- [ `single_char_push_str` ] : https://rust-lang.github.io/rust-clippy/master/index.html#single_char_push_str
19421947[ `single_component_path_imports` ] : https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports
19431948[ `single_element_loop` ] : https://rust-lang.github.io/rust-clippy/master/index.html#single_element_loop
19441949[ `single_match` ] : https://rust-lang.github.io/rust-clippy/master/index.html#single_match
0 commit comments