mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
Update changelog
This commit is contained in:
parent
90f345df94
commit
bc602df324
2 changed files with 5 additions and 0 deletions
|
@ -1,6 +1,9 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## Upcoming
|
||||||
|
* New lint: [`manual_memcpy`]
|
||||||
|
|
||||||
## 0.0.157 - 2017-09-04
|
## 0.0.157 - 2017-09-04
|
||||||
* Update to *rustc 1.22.0-nightly (981ce7d8d 2017-09-03)*
|
* Update to *rustc 1.22.0-nightly (981ce7d8d 2017-09-03)*
|
||||||
* New lint: [`unit_expr`]
|
* New lint: [`unit_expr`]
|
||||||
|
@ -511,6 +514,7 @@ All notable changes to this project will be documented in this file.
|
||||||
[`let_unit_value`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#let_unit_value
|
[`let_unit_value`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#let_unit_value
|
||||||
[`linkedlist`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#linkedlist
|
[`linkedlist`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#linkedlist
|
||||||
[`logic_bug`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#logic_bug
|
[`logic_bug`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#logic_bug
|
||||||
|
[`manual_memcpy`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#manual_memcpy
|
||||||
[`manual_swap`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#manual_swap
|
[`manual_swap`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#manual_swap
|
||||||
[`many_single_char_names`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#many_single_char_names
|
[`many_single_char_names`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#many_single_char_names
|
||||||
[`map_clone`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#map_clone
|
[`map_clone`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#map_clone
|
||||||
|
|
|
@ -444,6 +444,7 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
|
||||||
loops::FOR_LOOP_OVER_OPTION,
|
loops::FOR_LOOP_OVER_OPTION,
|
||||||
loops::FOR_LOOP_OVER_RESULT,
|
loops::FOR_LOOP_OVER_RESULT,
|
||||||
loops::ITER_NEXT_LOOP,
|
loops::ITER_NEXT_LOOP,
|
||||||
|
loops::MANUAL_MEMCPY,
|
||||||
loops::NEEDLESS_RANGE_LOOP,
|
loops::NEEDLESS_RANGE_LOOP,
|
||||||
loops::NEVER_LOOP,
|
loops::NEVER_LOOP,
|
||||||
loops::REVERSE_RANGE_LOOP,
|
loops::REVERSE_RANGE_LOOP,
|
||||||
|
|
Loading…
Reference in a new issue