Skip to content

Commit 747ff06

Browse files
committed
Update version attribute for 1.69 lints
1 parent 90cb0fa commit 747ff06

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

clippy_lints/src/functions/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

clippy_lints/src/methods/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

clippy_lints/src/multiple_unsafe_ops_per_block.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

clippy_lints/src/question_mark_used.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

clippy_lints/src/significant_drop_tightening.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)