Skip to content

Commit 31397b4

Browse files
committed
Update version attribute for 1.71 lints
1 parent 3be3fb7 commit 31397b4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

clippy_lints/src/items_after_test_module.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ declare_clippy_lint! {
3232
/// // [...]
3333
/// }
3434
/// ```
35-
#[clippy::version = "1.70.0"]
35+
#[clippy::version = "1.71.0"]
3636
pub ITEMS_AFTER_TEST_MODULE,
3737
style,
3838
"An item was found after the testing module `tests`"

clippy_lints/src/loops/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ declare_clippy_lint! {
601601
/// // use `number`
602602
/// }
603603
/// ```
604-
#[clippy::version = "1.70.0"]
604+
#[clippy::version = "1.71.0"]
605605
pub MANUAL_WHILE_LET_SOME,
606606
style,
607607
"checking for emptiness of a `Vec` in the loop condition and popping an element in the body"

clippy_lints/src/needless_bool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ declare_clippy_lint! {
106106
/// # let mut skip: bool;
107107
/// skip = !must_keep(x, y);
108108
/// ```
109-
#[clippy::version = "1.69.0"]
109+
#[clippy::version = "1.71.0"]
110110
pub NEEDLESS_BOOL_ASSIGN,
111111
complexity,
112112
"setting the same boolean variable in both branches of an if-statement"

0 commit comments

Comments
 (0)