Release 2.0.14
diff --git a/Cargo.toml b/Cargo.toml
index 2f97df4..608d904 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "thiserror"
-version = "2.0.13"
+version = "2.0.14"
 authors = ["David Tolnay <dtolnay@gmail.com>"]
 categories = ["rust-patterns"]
 description = "derive(Error)"
@@ -28,7 +28,7 @@
 std = []
 
 [dependencies]
-thiserror-impl = { version = "=2.0.13", path = "impl" }
+thiserror-impl = { version = "=2.0.14", path = "impl" }
 
 [dev-dependencies]
 anyhow = "1.0.73"
diff --git a/impl/Cargo.toml b/impl/Cargo.toml
index 9a9a05f..c433584 100644
--- a/impl/Cargo.toml
+++ b/impl/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "thiserror-impl"
-version = "2.0.13"
+version = "2.0.14"
 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 340c2b7..0349516 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -260,7 +260,7 @@
 //! [`Display`]: std::fmt::Display
 
 #![no_std]
-#![doc(html_root_url = "https://docs.rs/thiserror/2.0.13")]
+#![doc(html_root_url = "https://docs.rs/thiserror/2.0.14")]
 #![allow(
     clippy::elidable_lifetime_names,
     clippy::module_name_repetitions,