about summary refs log tree commit diff
path: root/clippy_lints/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-07-01 16:51:34 +0000
committerbors <bors@rust-lang.org>2022-07-01 16:51:34 +0000
commitf30b68d9d6e6a0cbdd3bba27e73210b1846d9af4 (patch)
tree1a08af9f32a6108b462585cae953fc56caf74394 /clippy_lints/src
parent097f7654b55e00167bdf74fc2da73ceba1f68287 (diff)
parenta86bf81e44dd530b69b686c556069bb8f6569c64 (diff)
Auto merge of #9085 - xFrednet:9081-update-format-push-version, r=Manishearth,flip1995
Correct lint version for `format_push_string`

Closes #9081

changelog: none

IDK what else to say. Look I can draw an ascii penguin =D:

```
 (^v^)
<(   )>
  w w
```
Diffstat (limited to 'clippy_lints/src')
-rw-r--r--clippy_lints/src/format_push_string.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/format_push_string.rs b/clippy_lints/src/format_push_string.rs
index ee15ae9f59a..de19c5ec20e 100644
--- a/clippy_lints/src/format_push_string.rs
+++ b/clippy_lints/src/format_push_string.rs
@@ -27,7 +27,7 @@ declare_clippy_lint! {
     /// let mut s = String::new();
     /// let _ = write!(s, "0x{:X}", 1024);
     /// ```
-    #[clippy::version = "1.61.0"]
+    #[clippy::version = "1.62.0"]
     pub FORMAT_PUSH_STRING,
     perf,
     "`format!(..)` appended to existing `String`"