Release 2.0.10
diff --git a/Cargo.toml b/Cargo.toml
index fed8f7a..23fa32a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "thiserror"
-version = "2.0.9"
+version = "2.0.10"
 authors = ["David Tolnay <dtolnay@gmail.com>"]
 categories = ["rust-patterns"]
 description = "derive(Error)"
@@ -28,7 +28,7 @@
 std = []
 
 [dependencies]
-thiserror-impl = { version = "=2.0.9", path = "impl" }
+thiserror-impl = { version = "=2.0.10", path = "impl" }
 
 [dev-dependencies]
 anyhow = "1.0.73"
diff --git a/impl/Cargo.toml b/impl/Cargo.toml
index d08bcf9..069f2eb 100644
--- a/impl/Cargo.toml
+++ b/impl/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "thiserror-impl"
-version = "2.0.9"
+version = "2.0.10"
 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 5145c1c..83835e8 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -259,7 +259,7 @@
 //!   [`anyhow`]: https://github.com/dtolnay/anyhow
 
 #![no_std]
-#![doc(html_root_url = "https://docs.rs/thiserror/2.0.9")]
+#![doc(html_root_url = "https://docs.rs/thiserror/2.0.10")]
 #![allow(
     clippy::module_name_repetitions,
     clippy::needless_lifetimes,