Release 1.0.60
diff --git a/Cargo.toml b/Cargo.toml
index 36462e1..fd2d13d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "thiserror"
-version = "1.0.59"
+version = "1.0.60"
 authors = ["David Tolnay <dtolnay@gmail.com>"]
 categories = ["rust-patterns"]
 description = "derive(Error)"
@@ -12,7 +12,7 @@
 rust-version = "1.56"
 
 [dependencies]
-thiserror-impl = { version = "=1.0.59", path = "impl" }
+thiserror-impl = { version = "=1.0.60", path = "impl" }
 
 [dev-dependencies]
 anyhow = "1.0.73"
diff --git a/impl/Cargo.toml b/impl/Cargo.toml
index f2f8ac2..698f967 100644
--- a/impl/Cargo.toml
+++ b/impl/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "thiserror-impl"
-version = "1.0.59"
+version = "1.0.60"
 authors = ["David Tolnay <dtolnay@gmail.com>"]
 description = "Implementation detail of the `thiserror` crate"
 edition = "2021"
diff --git a/src/lib.rs b/src/lib.rs
index 5b07dca..81a04b0 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -228,7 +228,7 @@
 //!
 //!   [`anyhow`]: https://github.com/dtolnay/anyhow
 
-#![doc(html_root_url = "https://docs.rs/thiserror/1.0.59")]
+#![doc(html_root_url = "https://docs.rs/thiserror/1.0.60")]
 #![allow(
     clippy::module_name_repetitions,
     clippy::needless_lifetimes,