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! {
348
348
/// // [...]
349
349
/// }
350
350
/// ```
351
- #[ clippy:: version = "1.68 .0" ]
351
+ #[ clippy:: version = "1.69 .0" ]
352
352
pub IMPL_TRAIT_IN_PARAMS ,
353
353
restriction,
354
354
"`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! {
3185
3185
/// ```rust
3186
3186
/// std::process::Command::new("echo").args(["-n", "hello"]).spawn().unwrap();
3187
3187
/// ```
3188
- #[ clippy:: version = "1.67 .0" ]
3188
+ #[ clippy:: version = "1.69 .0" ]
3189
3189
pub SUSPICIOUS_COMMAND_ARG_SPACE ,
3190
3190
suspicious,
3191
3191
"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! {
59
59
/// unsafe { char::from_u32_unchecked(int_value) }
60
60
/// }
61
61
/// ```
62
- #[ clippy:: version = "1.68 .0" ]
62
+ #[ clippy:: version = "1.69 .0" ]
63
63
pub MULTIPLE_UNSAFE_OPS_PER_BLOCK ,
64
64
restriction,
65
65
"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! {
24
24
/// ```ignore
25
25
/// utility_macro!(expr);
26
26
/// ```
27
- #[ clippy:: version = "pre 1.29 .0" ]
27
+ #[ clippy:: version = "1.69 .0" ]
28
28
pub QUESTION_MARK_USED ,
29
29
restriction,
30
30
"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! {
46
46
/// do_heavy_computation_that_takes_time(owned_rslt);
47
47
/// }
48
48
/// ```
49
- #[ clippy:: version = "1.67 .0" ]
49
+ #[ clippy:: version = "1.69 .0" ]
50
50
pub SIGNIFICANT_DROP_TIGHTENING ,
51
51
nursery,
52
52
"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