Skip to content

Commit a24f77f

Browse files
committed
Bump the version
1 parent 48cb6e2 commit a24f77f

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -617,6 +617,7 @@ All notable changes to this project will be documented in this file.
617617
[`block_in_if_condition_expr`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#block_in_if_condition_expr
618618
[`block_in_if_condition_stmt`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#block_in_if_condition_stmt
619619
[`bool_comparison`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#bool_comparison
620+
[`borrow_interior_mutable_const`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#borrow_interior_mutable_const
620621
[`borrowed_box`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#borrowed_box
621622
[`box_vec`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#box_vec
622623
[`boxed_local`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#boxed_local
@@ -641,6 +642,7 @@ All notable changes to this project will be documented in this file.
641642
[`crosspointer_transmute`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#crosspointer_transmute
642643
[`cyclomatic_complexity`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#cyclomatic_complexity
643644
[`decimal_literal_representation`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#decimal_literal_representation
645+
[`declare_interior_mutable_const`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#declare_interior_mutable_const
644646
[`default_trait_access`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#default_trait_access
645647
[`deprecated_semver`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#deprecated_semver
646648
[`deref_addrof`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#deref_addrof

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 270 lints included in this crate!](https://rust-lang-nursery.github.io/rust-clippy/master/index.html)
12+
[There are 272 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/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,7 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
434434
reg.register_lint_group("clippy_pedantic", vec![
435435
attrs::INLINE_ALWAYS,
436436
copies::MATCH_SAME_ARMS,
437+
default_trait_access::DEFAULT_TRAIT_ACCESS,
437438
derive::EXPL_IMPL_CLONE_ON_COPY,
438439
doc::DOC_MARKDOWN,
439440
empty_enum::EMPTY_ENUM,
@@ -492,7 +493,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
492493
copies::IF_SAME_THEN_ELSE,
493494
copies::IFS_SAME_COND,
494495
cyclomatic_complexity::CYCLOMATIC_COMPLEXITY,
495-
default_trait_access::DEFAULT_TRAIT_ACCESS,
496496
derive::DERIVE_HASH_XOR_EQ,
497497
double_comparison::DOUBLE_COMPARISONS,
498498
double_parens::DOUBLE_PARENS,
@@ -694,7 +694,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
694694
block_in_if_condition::BLOCK_IN_IF_CONDITION_STMT,
695695
collapsible_if::COLLAPSIBLE_IF,
696696
const_static_lifetime::CONST_STATIC_LIFETIME,
697-
default_trait_access::DEFAULT_TRAIT_ACCESS,
698697
enum_variants::ENUM_VARIANT_NAMES,
699698
enum_variants::MODULE_INCEPTION,
700699
eq_op::OP_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 (01cc982e9 2018-06-24)
1+
rustc 1.28.0-nightly (e3bf634e0 2018-06-28)
22
binary: rustc
3-
commit-hash: 01cc982e936120acb0424e41de14e42ba2d88c6f
4-
commit-date: 2018-06-24
3+
commit-hash: e3bf634e060bc2f8665878288bcea02008ca346e
4+
commit-date: 2018-06-28
55
host: x86_64-unknown-linux-gnu
66
release: 1.28.0-nightly
77
LLVM version: 6.0

0 commit comments

Comments
 (0)