Skip to content

Commit c8d32e5

Browse files
authored
Fix Clippy version in derive_partial_eq_without_eq lint
It was first added to Rust in rust-lang/rust#97248 which missed 1.62 just by few days.
1 parent 8a62b6f commit c8d32e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/derive.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ declare_clippy_lint! {
189189
/// i_am_eq_too: Vec<String>,
190190
/// }
191191
/// ```
192-
#[clippy::version = "1.62.0"]
192+
#[clippy::version = "1.63.0"]
193193
pub DERIVE_PARTIAL_EQ_WITHOUT_EQ,
194194
style,
195195
"deriving `PartialEq` on a type that can implement `Eq`, without implementing `Eq`"

0 commit comments

Comments
 (0)