Skip to content

Commit b7222be

Browse files
committed
Version bump
1 parent b127ad2 commit b7222be

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## 0.0.159
5+
* Update to *rustc 1.22.0-nightly (eba374fb2 2017-09-11)*
6+
* New lint: [`clone_on_ref_ptr`]
7+
48
## 0.0.158
59
* New lint: [`manual_memcpy`]
610
* [`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.
450454
[`chars_next_cmp`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#chars_next_cmp
451455
[`clone_double_ref`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#clone_double_ref
452456
[`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
453458
[`cmp_nan`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#cmp_nan
454459
[`cmp_null`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#cmp_null
455460
[`cmp_owned`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#cmp_owned

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clippy"
3-
version = "0.0.158"
3+
version = "0.0.159"
44
authors = [
55
"Manish Goregaokar <[email protected]>",
66
"Andre Bogus <[email protected]>",
@@ -31,7 +31,7 @@ path = "src/main.rs"
3131

3232
[dependencies]
3333
# begin automatic update
34-
clippy_lints = { version = "0.0.158", path = "clippy_lints" }
34+
clippy_lints = { version = "0.0.159", path = "clippy_lints" }
3535
# end automatic update
3636
cargo_metadata = "0.2"
3737

clippy_lints/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "clippy_lints"
33
# begin automatic update
4-
version = "0.0.158"
4+
version = "0.0.159"
55
# end automatic update
66
authors = [
77
"Manish Goregaokar <[email protected]>",

clippy_lints/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,7 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
460460
methods::CHARS_NEXT_CMP,
461461
methods::CLONE_DOUBLE_REF,
462462
methods::CLONE_ON_COPY,
463+
methods::CLONE_ON_REF_PTR,
463464
methods::FILTER_NEXT,
464465
methods::GET_UNWRAP,
465466
methods::ITER_CLONED_COLLECT,

0 commit comments

Comments
 (0)