Skip to content

Commit 9f8624e

Browse files
committed
Version bump
1 parent d4618e0 commit 9f8624e

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

CHANGELOG.md

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

4+
## 0.0.210
5+
* Rustup to *rustc 1.28.0-nightly (01cc982e9 2018-06-24)*
6+
47
## 0.0.209
58
* Rustup to *rustc 1.28.0-nightly (523097979 2018-06-18)*
69

@@ -638,6 +641,7 @@ All notable changes to this project will be documented in this file.
638641
[`crosspointer_transmute`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#crosspointer_transmute
639642
[`cyclomatic_complexity`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#cyclomatic_complexity
640643
[`decimal_literal_representation`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#decimal_literal_representation
644+
[`default_trait_access`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#default_trait_access
641645
[`deprecated_semver`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#deprecated_semver
642646
[`deref_addrof`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#deref_addrof
643647
[`derive_hash_xor_eq`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#derive_hash_xor_eq
@@ -778,6 +782,7 @@ All notable changes to this project will be documented in this file.
778782
[`out_of_bounds_indexing`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#out_of_bounds_indexing
779783
[`overflow_check_conditional`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#overflow_check_conditional
780784
[`panic_params`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#panic_params
785+
[`panicking_unwrap`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#panicking_unwrap
781786
[`partialeq_ne_impl`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#partialeq_ne_impl
782787
[`possible_missing_comma`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#possible_missing_comma
783788
[`precedence`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#precedence

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cargo-features = ["edition"]
22

33
[package]
44
name = "clippy"
5-
version = "0.0.209"
5+
version = "0.0.210"
66
authors = [
77
"Manish Goregaokar <[email protected]>",
88
"Andre Bogus <[email protected]>",
@@ -40,7 +40,7 @@ path = "src/driver.rs"
4040

4141
[dependencies]
4242
# begin automatic update
43-
clippy_lints = { version = "0.0.209", path = "clippy_lints" }
43+
clippy_lints = { version = "0.0.210", path = "clippy_lints" }
4444
# end automatic update
4545
regex = "1"
4646
semver = "0.9"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ We are currently in the process of discussing Clippy 1.0 via the RFC process in
99

1010
A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.
1111

12-
[There are 268 lints included in this crate!](https://rust-lang-nursery.github.io/rust-clippy/master/index.html)
12+
[There are 270 lints included in this crate!](https://rust-lang-nursery.github.io/rust-clippy/master/index.html)
1313

1414
We have a bunch of lint categories to allow you to choose how much clippy is supposed to ~~annoy~~ help you:
1515

clippy_lints/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cargo-features = ["edition"]
33
[package]
44
name = "clippy_lints"
55
# begin automatic update
6-
version = "0.0.209"
6+
version = "0.0.210"
77
# end automatic update
88
authors = [
99
"Manish Goregaokar <[email protected]>",

clippy_lints/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
499499

500500
reg.register_lint_group("clippy", vec![
501501
approx_const::APPROX_CONSTANT,
502-
indexing_slicing::OUT_OF_BOUNDS_INDEXING,
503502
assign_ops::ASSIGN_OP_PATTERN,
504503
assign_ops::MISREFACTORED_ASSIGN_OP,
505504
attrs::DEPRECATED_SEMVER,
@@ -549,6 +548,7 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
549548
identity_conversion::IDENTITY_CONVERSION,
550549
identity_op::IDENTITY_OP,
551550
if_let_redundant_pattern_matching::IF_LET_REDUNDANT_PATTERN_MATCHING,
551+
indexing_slicing::OUT_OF_BOUNDS_INDEXING,
552552
infallible_destructuring_match::INFALLIBLE_DESTRUCTURING_MATCH,
553553
infinite_iter::INFINITE_ITER,
554554
inline_fn_without_body::INLINE_FN_WITHOUT_BODY,
@@ -862,7 +862,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
862862

863863
reg.register_lint_group("clippy_correctness", vec![
864864
approx_const::APPROX_CONSTANT,
865-
indexing_slicing::OUT_OF_BOUNDS_INDEXING,
866865
attrs::DEPRECATED_SEMVER,
867866
attrs::USELESS_ATTRIBUTE,
868867
bit_mask::BAD_BIT_MASK,
@@ -880,6 +879,7 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
880879
erasing_op::ERASING_OP,
881880
formatting::POSSIBLE_MISSING_COMMA,
882881
functions::NOT_UNSAFE_PTR_ARG_DEREF,
882+
indexing_slicing::OUT_OF_BOUNDS_INDEXING,
883883
infinite_iter::INFINITE_ITER,
884884
inline_fn_without_body::INLINE_FN_WITHOUT_BODY,
885885
invalid_ref::INVALID_REF,

min_version.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
rustc 1.28.0-nightly (523097979 2018-06-18)
1+
rustc 1.28.0-nightly (01cc982e9 2018-06-24)
22
binary: rustc
3-
commit-hash: 5230979794db209de492b3f7cc688020b72bc7c6
4-
commit-date: 2018-06-18
3+
commit-hash: 01cc982e936120acb0424e41de14e42ba2d88c6f
4+
commit-date: 2018-06-24
55
host: x86_64-unknown-linux-gnu
66
release: 1.28.0-nightly
77
LLVM version: 6.0

0 commit comments

Comments
 (0)