File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -348,7 +348,7 @@ declare_clippy_lint! {
348348 /// // [...]
349349 /// }
350350 /// ```
351- #[ clippy:: version = "1.68 .0" ]
351+ #[ clippy:: version = "1.69 .0" ]
352352 pub IMPL_TRAIT_IN_PARAMS ,
353353 restriction,
354354 "`impl Trait` is used in the function's parameters"
Original file line number Diff line number Diff line change @@ -3185,7 +3185,7 @@ declare_clippy_lint! {
31853185 /// ```rust
31863186 /// std::process::Command::new("echo").args(["-n", "hello"]).spawn().unwrap();
31873187 /// ```
3188- #[ clippy:: version = "1.67 .0" ]
3188+ #[ clippy:: version = "1.69 .0" ]
31893189 pub SUSPICIOUS_COMMAND_ARG_SPACE ,
31903190 suspicious,
31913191 "single command line argument that looks like it should be multiple arguments"
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ declare_clippy_lint! {
5959 /// unsafe { char::from_u32_unchecked(int_value) }
6060 /// }
6161 /// ```
62- #[ clippy:: version = "1.68 .0" ]
62+ #[ clippy:: version = "1.69 .0" ]
6363 pub MULTIPLE_UNSAFE_OPS_PER_BLOCK ,
6464 restriction,
6565 "more than one unsafe operation per `unsafe` block"
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ declare_clippy_lint! {
2424 /// ```ignore
2525 /// utility_macro!(expr);
2626 /// ```
27- #[ clippy:: version = "pre 1.29 .0" ]
27+ #[ clippy:: version = "1.69 .0" ]
2828 pub QUESTION_MARK_USED ,
2929 restriction,
3030 "complains if the question mark operator is used"
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ declare_clippy_lint! {
4646 /// do_heavy_computation_that_takes_time(owned_rslt);
4747 /// }
4848 /// ```
49- #[ clippy:: version = "1.67 .0" ]
49+ #[ clippy:: version = "1.69 .0" ]
5050 pub SIGNIFICANT_DROP_TIGHTENING ,
5151 nursery,
5252 "Searches for elements marked with `#[clippy::has_significant_drop]` that could be early dropped but are in fact dropped at the end of their scopes"
You can’t perform that action at this time.
0 commit comments