Skip to content

Commit 8990153

Browse files
committed
Update version attribute for 1.75 lints
1 parent 99c7838 commit 8990153

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

clippy_lints/src/iter_without_into_iter.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ declare_clippy_lint! {
4949
/// }
5050
/// }
5151
/// ```
52-
#[clippy::version = "1.74.0"]
52+
#[clippy::version = "1.75.0"]
5353
pub ITER_WITHOUT_INTO_ITER,
5454
pedantic,
5555
"implementing `iter(_mut)` without an associated `IntoIterator for (&|&mut) Type` impl"
@@ -101,7 +101,7 @@ declare_clippy_lint! {
101101
/// }
102102
/// }
103103
/// ```
104-
#[clippy::version = "1.74.0"]
104+
#[clippy::version = "1.75.0"]
105105
pub INTO_ITER_WITHOUT_ITER,
106106
pedantic,
107107
"implementing `IntoIterator for (&|&mut) Type` without an inherent `iter(_mut)` method"

clippy_lints/src/manual_hash_one.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ declare_clippy_lint! {
4040
///
4141
/// let hash = s.hash_one(&value);
4242
/// ```
43-
#[clippy::version = "1.74.0"]
43+
#[clippy::version = "1.75.0"]
4444
pub MANUAL_HASH_ONE,
4545
complexity,
4646
"manual implementations of `BuildHasher::hash_one`"

0 commit comments

Comments
 (0)