about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMateusz MikuĊ‚a <mati865@users.noreply.github.com>2022-07-11 17:01:46 +0200
committerGitHub <noreply@github.com>2022-07-11 17:01:46 +0200
commitc8d32e53a2b0a4a697343bcb8c0d515de5e2411b (patch)
tree6458baa76d44e2ad1f668588de90612a84d3a01f
parent8a62b6f523f3ea92d32146bde6505960e70b65c0 (diff)
downloadrust-c8d32e53a2b0a4a697343bcb8c0d515de5e2411b.tar.gz
rust-c8d32e53a2b0a4a697343bcb8c0d515de5e2411b.zip
Fix Clippy version in `derive_partial_eq_without_eq` lint
It was first added to Rust in https://github.com/rust-lang/rust/pull/97248 which missed 1.62 just by few days.
-rw-r--r--clippy_lints/src/derive.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/derive.rs b/clippy_lints/src/derive.rs
index 28f218a8e34..a982990e418 100644
--- a/clippy_lints/src/derive.rs
+++ b/clippy_lints/src/derive.rs
@@ -189,7 +189,7 @@ declare_clippy_lint! {
     ///     i_am_eq_too: Vec<String>,
     /// }
     /// ```
-    #[clippy::version = "1.62.0"]
+    #[clippy::version = "1.63.0"]
     pub DERIVE_PARTIAL_EQ_WITHOUT_EQ,
     style,
     "deriving `PartialEq` on a type that can implement `Eq`, without implementing `Eq`"