Skip to content

Commit 7c1598b

Browse files
committed
Auto merge of #9152 - mati865:patch-2, r=xFrednet
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. changelog: none
2 parents 8a62b6f + c8d32e5 commit 7c1598b

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)