@@ -2970,7 +2970,7 @@ declare_clippy_lint! {
29702970 /// assert_eq!((*any_box).type_id(), TypeId::of::<i32>());
29712971 /// // ^ dereference first, to call `type_id` on `dyn Any`
29722972 /// ```
2973- #[ clippy:: version = "1.72 .0" ]
2973+ #[ clippy:: version = "1.73 .0" ]
29742974 pub TYPE_ID_ON_BOX ,
29752975 suspicious,
29762976 "calling `.type_id()` on `Box<dyn Any>`"
@@ -3391,7 +3391,7 @@ declare_clippy_lint! {
33913391 /// // ^^^^^^^^^^^ remove the trailing newline
33923392 /// assert_eq!(num, 42);
33933393 /// ```
3394- #[ clippy:: version = "1.72 .0" ]
3394+ #[ clippy:: version = "1.73 .0" ]
33953395 pub READ_LINE_WITHOUT_TRIM ,
33963396 correctness,
33973397 "calling `Stdin::read_line`, then trying to parse it without first trimming"
@@ -3419,7 +3419,7 @@ declare_clippy_lint! {
34193419 /// # let c = 'c';
34203420 /// matches!(c, '\\' | '.' | '+' | '*' | '(' | ')' | '|' | '[' | ']' | '{' | '}' | '^' | '$' | '#' | '&' | '-' | '~');
34213421 /// ```
3422- #[ clippy:: version = "1.72 .0" ]
3422+ #[ clippy:: version = "1.73 .0" ]
34233423 pub STRING_LIT_CHARS_ANY ,
34243424 restriction,
34253425 "checks for `<string_lit>.chars().any(|i| i == c)`"
@@ -3454,7 +3454,7 @@ declare_clippy_lint! {
34543454 /// })
34553455 /// }
34563456 /// ```
3457- #[ clippy:: version = "1.72 .0" ]
3457+ #[ clippy:: version = "1.73 .0" ]
34583458 pub FORMAT_COLLECT ,
34593459 perf,
34603460 "`format!`ing every element in a collection, then collecting the strings into a new `String`"
@@ -3475,7 +3475,7 @@ declare_clippy_lint! {
34753475 /// let y = v.iter().collect::<Vec<_>>();
34763476 /// assert_eq!(x, y);
34773477 /// ```
3478- #[ clippy:: version = "1.72 .0" ]
3478+ #[ clippy:: version = "1.73 .0" ]
34793479 pub ITER_SKIP_ZERO ,
34803480 correctness,
34813481 "disallows `.skip(0)`"
@@ -3506,7 +3506,7 @@ declare_clippy_lint! {
35063506 /// # let v = vec![];
35073507 /// _ = v.into_iter().filter(|i| i % 2 == 0).map(|i| really_expensive_fn(i));
35083508 /// ```
3509- #[ clippy:: version = "1.72 .0" ]
3509+ #[ clippy:: version = "1.73 .0" ]
35103510 pub FILTER_MAP_BOOL_THEN ,
35113511 style,
35123512 "checks for usage of `bool::then` in `Iterator::filter_map`"
0 commit comments