File tree 4 files changed +9
-3
lines changed
4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
All notable changes to this project will be documented in this file.
3
3
4
+ ## 0.0.159
5
+ * Update to * rustc 1.22.0-nightly (eba374fb2 2017-09-11)*
6
+ * New lint: [ ` clone_on_ref_ptr ` ]
7
+
4
8
## 0.0.158
5
9
* New lint: [ ` manual_memcpy ` ]
6
10
* [ ` cast_lossless ` ] no longer has redundant parentheses in its suggestions
@@ -450,6 +454,7 @@ All notable changes to this project will be documented in this file.
450
454
[ `chars_next_cmp` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#chars_next_cmp
451
455
[ `clone_double_ref` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#clone_double_ref
452
456
[ `clone_on_copy` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#clone_on_copy
457
+ [ `clone_on_ref_ptr` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#clone_on_ref_ptr
453
458
[ `cmp_nan` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#cmp_nan
454
459
[ `cmp_null` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#cmp_null
455
460
[ `cmp_owned` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#cmp_owned
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " clippy"
3
- version = " 0.0.158 "
3
+ version = " 0.0.159 "
4
4
authors = [
5
5
" Manish Goregaokar <[email protected] >" ,
6
6
" Andre Bogus <[email protected] >" ,
@@ -31,7 +31,7 @@ path = "src/main.rs"
31
31
32
32
[dependencies ]
33
33
# begin automatic update
34
- clippy_lints = { version = " 0.0.158 " , path = " clippy_lints" }
34
+ clippy_lints = { version = " 0.0.159 " , path = " clippy_lints" }
35
35
# end automatic update
36
36
cargo_metadata = " 0.2"
37
37
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " clippy_lints"
3
3
# begin automatic update
4
- version = " 0.0.158 "
4
+ version = " 0.0.159 "
5
5
# end automatic update
6
6
authors = [
7
7
" Manish Goregaokar <[email protected] >" ,
Original file line number Diff line number Diff line change @@ -460,6 +460,7 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
460
460
methods:: CHARS_NEXT_CMP ,
461
461
methods:: CLONE_DOUBLE_REF ,
462
462
methods:: CLONE_ON_COPY ,
463
+ methods:: CLONE_ON_REF_PTR ,
463
464
methods:: FILTER_NEXT ,
464
465
methods:: GET_UNWRAP ,
465
466
methods:: ITER_CLONED_COLLECT ,
You can’t perform that action at this time.
0 commit comments