@@ -6,17 +6,45 @@ document.
6
6
7
7
## Unreleased / In Rust Beta or Nightly
8
8
9
- [ 72da101 ...master] ( https://github.com/rust-lang/rust-clippy/compare/72da101 ...master )
9
+ [ 3aea860 ...master] ( https://github.com/rust-lang/rust-clippy/compare/3aea860 ...master )
10
10
11
- ## Rust 1.38
11
+ ## Rust 1.39
12
12
13
13
Current Beta
14
14
15
- [ e3cb40e...72da101] ( https://github.com/rust-lang/rust-clippy/compare/e3cb40e...72da101 )
15
+ ## Rust 1.38
16
+
17
+ Current stable, released 2019-09-26
18
+
19
+ [ e3cb40e...3aea860] ( https://github.com/rust-lang/rust-clippy/compare/e3cb40e...3aea860 )
20
+
21
+ * New Lints:
22
+ * [ ` main_recursion ` ] [ #4203 ] ( https://github.com/rust-lang/rust-clippy/pull/4203 )
23
+ * [ ` inherent_to_string ` ] [ #4259 ] ( https://github.com/rust-lang/rust-clippy/pull/4259 )
24
+ * [ ` inherent_to_string_shadow_display ` ] [ #4259 ] ( https://github.com/rust-lang/rust-clippy/pull/4259 )
25
+ * [ ` type_repetition_in_bounds ` ] [ #3766 ] ( https://github.com/rust-lang/rust-clippy/pull/3766 )
26
+ * [ ` try_err ` ] [ #4222 ] ( https://github.com/rust-lang/rust-clippy/pull/4222 )
27
+ * Move ` {unnnecessary,panicking}_unwrap ` out of nursery [ #4307 ] ( https://github.com/rust-lang/rust-clippy/pull/4307 )
28
+ * Extend the ` use_self ` lint to suggest uses of ` Self::Variant ` [ #4308 ] ( https://github.com/rust-lang/rust-clippy/pull/4308 )
29
+ * Improve suggestion for needless return [ #4262 ] ( https://github.com/rust-lang/rust-clippy/pull/4262 )
30
+ * Add auto-fixable suggestion for ` let_unit ` [ #4337 ] ( https://github.com/rust-lang/rust-clippy/pull/4337 )
31
+ * Fix false positive in ` pub_enum_variant_names ` and ` enum_variant_names ` [ #4345 ] ( https://github.com/rust-lang/rust-clippy/pull/4345 )
32
+ * Fix false positive in ` cast_ptr_alignment ` [ #4257 ] ( https://github.com/rust-lang/rust-clippy/pull/4257 )
33
+ * Fix false positive in ` string_lit_as_bytes ` [ #4233 ] ( https://github.com/rust-lang/rust-clippy/pull/4233 )
34
+ * Fix false positive in ` needless_lifetimes ` [ #4266 ] ( https://github.com/rust-lang/rust-clippy/pull/4266 )
35
+ * Fix false positive in ` float_cmp ` [ #4275 ] ( https://github.com/rust-lang/rust-clippy/pull/4275 )
36
+ * Fix false positives in ` needless_return ` [ #4274 ] ( https://github.com/rust-lang/rust-clippy/pull/4274 )
37
+ * Fix false negative in ` match_same_arms ` [ #4246 ] ( https://github.com/rust-lang/rust-clippy/pull/4246 )
38
+ * Fix incorrect suggestion for ` needless_bool ` [ #4335 ] ( https://github.com/rust-lang/rust-clippy/pull/4335 )
39
+ * Improve suggestion for ` cast_ptr_alignment ` [ #4257 ] ( https://github.com/rust-lang/rust-clippy/pull/4257 )
40
+ * Improve suggestion for ` single_char_literal ` [ #4361 ] ( https://github.com/rust-lang/rust-clippy/pull/4361 )
41
+ * Improve suggestion for ` len_zero ` [ #4314 ] ( https://github.com/rust-lang/rust-clippy/pull/4314 )
42
+ * Fix ICE in ` implicit_hasher ` [ #4268 ] ( https://github.com/rust-lang/rust-clippy/pull/4268 )
43
+ * Fix allow bug in ` trivially_copy_pass_by_ref ` [ #4250 ] ( https://github.com/rust-lang/rust-clippy/pull/4250 )
16
44
17
45
## Rust 1.37
18
46
19
- Current stable, released 2019-08-15
47
+ Released 2019-08-15
20
48
21
49
[ 082cfa7...e3cb40e] ( https://github.com/rust-lang/rust-clippy/compare/082cfa7...e3cb40e )
22
50
@@ -1190,6 +1218,7 @@ Released 2018-09-13
1190
1218
[ `unnecessary_operation` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_operation
1191
1219
[ `unnecessary_unwrap` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_unwrap
1192
1220
[ `unneeded_field_pattern` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unneeded_field_pattern
1221
+ [ `unneeded_wildcard_pattern` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unneeded_wildcard_pattern
1193
1222
[ `unreadable_literal` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unreadable_literal
1194
1223
[ `unsafe_removed_from_name` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unsafe_removed_from_name
1195
1224
[ `unsafe_vector_initialization` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unsafe_vector_initialization
0 commit comments