1
1
# Change Log
2
2
All notable changes to this project will be documented in this file.
3
3
4
- ## 0.0.84 — TBD
4
+ ## 0.0.90 — 2016-09-09
5
+ * Rustup to * rustc 1.13.0-nightly (f1f40f850 2016-09-09)*
6
+
7
+ ## 0.0.89 — 2016-09-06
8
+ * Rustup to * rustc 1.13.0-nightly (cbe4de78e 2016-09-05)*
9
+
10
+ ## 0.0.88 — 2016-09-04
11
+ * Rustup to * rustc 1.13.0-nightly (70598e04f 2016-09-03)*
12
+ * The following lints are not new but were only usable through the ` clippy `
13
+ lint groups: [ ` filter_next ` ] , [ ` for_loop_over_option ` ] ,
14
+ [ ` for_loop_over_result ` ] and [ ` match_overlapping_arm ` ] . You should now be
15
+ able to ` #[allow/deny] ` them individually and they are available directly
16
+ through [ ` cargo clippy ` ] .
17
+
18
+ ## 0.0.87 — 2016-08-31
19
+ * Rustup to * rustc 1.13.0-nightly (eac41469d 2016-08-30)*
20
+ * New lints: [ ` builtin_type_shadow ` ]
21
+ * Fix FP in [ ` zero_prefixed_literal ` ] and ` 0b ` /` 0o `
22
+
23
+ ## 0.0.86 — 2016-08-28
24
+ * Rustup to * rustc 1.13.0-nightly (a23064af5 2016-08-27)*
25
+ * New lints: [ ` missing_docs_in_private_items ` ] , [ ` zero_prefixed_literal ` ]
26
+
27
+ ## 0.0.85 — 2016-08-19
28
+ * Fix ICE with [ ` useless_attribute ` ]
29
+ * [ ` useless_attribute ` ] ignores [ ` unused_imports ` ] on ` use ` statements
30
+
31
+ ## 0.0.84 — 2016-08-18
32
+ * Rustup to * rustc 1.13.0-nightly (aef6971ca 2016-08-17)*
5
33
6
34
## 0.0.83 — 2016-08-17
7
35
* Rustup to * rustc 1.12.0-nightly (1bf5fa326 2016-08-16)*
@@ -166,6 +194,7 @@ All notable changes to this project will be documented in this file.
166
194
[ `bool_comparison` ] : https://github.com/Manishearth/rust-clippy/wiki#bool_comparison
167
195
[ `box_vec` ] : https://github.com/Manishearth/rust-clippy/wiki#box_vec
168
196
[ `boxed_local` ] : https://github.com/Manishearth/rust-clippy/wiki#boxed_local
197
+ [ `builtin_type_shadow` ] : https://github.com/Manishearth/rust-clippy/wiki#builtin_type_shadow
169
198
[ `cast_possible_truncation` ] : https://github.com/Manishearth/rust-clippy/wiki#cast_possible_truncation
170
199
[ `cast_possible_wrap` ] : https://github.com/Manishearth/rust-clippy/wiki#cast_possible_wrap
171
200
[ `cast_precision_loss` ] : https://github.com/Manishearth/rust-clippy/wiki#cast_precision_loss
@@ -175,12 +204,14 @@ All notable changes to this project will be documented in this file.
175
204
[ `clone_double_ref` ] : https://github.com/Manishearth/rust-clippy/wiki#clone_double_ref
176
205
[ `clone_on_copy` ] : https://github.com/Manishearth/rust-clippy/wiki#clone_on_copy
177
206
[ `cmp_nan` ] : https://github.com/Manishearth/rust-clippy/wiki#cmp_nan
207
+ [ `cmp_null` ] : https://github.com/Manishearth/rust-clippy/wiki#cmp_null
178
208
[ `cmp_owned` ] : https://github.com/Manishearth/rust-clippy/wiki#cmp_owned
179
209
[ `collapsible_if` ] : https://github.com/Manishearth/rust-clippy/wiki#collapsible_if
180
210
[ `crosspointer_transmute` ] : https://github.com/Manishearth/rust-clippy/wiki#crosspointer_transmute
181
211
[ `cyclomatic_complexity` ] : https://github.com/Manishearth/rust-clippy/wiki#cyclomatic_complexity
182
212
[ `deprecated_semver` ] : https://github.com/Manishearth/rust-clippy/wiki#deprecated_semver
183
213
[ `derive_hash_xor_eq` ] : https://github.com/Manishearth/rust-clippy/wiki#derive_hash_xor_eq
214
+ [ `diverging_sub_expression` ] : https://github.com/Manishearth/rust-clippy/wiki#diverging_sub_expression
184
215
[ `doc_markdown` ] : https://github.com/Manishearth/rust-clippy/wiki#doc_markdown
185
216
[ `double_neg` ] : https://github.com/Manishearth/rust-clippy/wiki#double_neg
186
217
[ `drop_ref` ] : https://github.com/Manishearth/rust-clippy/wiki#drop_ref
@@ -232,6 +263,7 @@ All notable changes to this project will be documented in this file.
232
263
[ `mem_forget` ] : https://github.com/Manishearth/rust-clippy/wiki#mem_forget
233
264
[ `min_max` ] : https://github.com/Manishearth/rust-clippy/wiki#min_max
234
265
[ `misrefactored_assign_op` ] : https://github.com/Manishearth/rust-clippy/wiki#misrefactored_assign_op
266
+ [ `missing_docs_in_private_items` ] : https://github.com/Manishearth/rust-clippy/wiki#missing_docs_in_private_items
235
267
[ `mixed_case_hex_literals` ] : https://github.com/Manishearth/rust-clippy/wiki#mixed_case_hex_literals
236
268
[ `module_inception` ] : https://github.com/Manishearth/rust-clippy/wiki#module_inception
237
269
[ `modulo_one` ] : https://github.com/Manishearth/rust-clippy/wiki#modulo_one
@@ -323,5 +355,6 @@ All notable changes to this project will be documented in this file.
323
355
[ `wrong_self_convention` ] : https://github.com/Manishearth/rust-clippy/wiki#wrong_self_convention
324
356
[ `wrong_transmute` ] : https://github.com/Manishearth/rust-clippy/wiki#wrong_transmute
325
357
[ `zero_divided_by_zero` ] : https://github.com/Manishearth/rust-clippy/wiki#zero_divided_by_zero
358
+ [ `zero_prefixed_literal` ] : https://github.com/Manishearth/rust-clippy/wiki#zero_prefixed_literal
326
359
[ `zero_width_space` ] : https://github.com/Manishearth/rust-clippy/wiki#zero_width_space
327
360
<!-- end autogenerated links to wiki -->
0 commit comments