From 49be39dee10d7fce1d4b2f7f6b6010f2b309794e Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 9 Nov 2024 22:28:33 -0800 Subject: [PATCH] Release 2.0.2 --- Cargo.toml | 4 ++-- impl/Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ddd289b..2ad54c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thiserror" -version = "2.0.1" +version = "2.0.2" authors = ["David Tolnay "] categories = ["rust-patterns"] description = "derive(Error)" @@ -28,7 +28,7 @@ default = ["std"] std = [] [dependencies] -thiserror-impl = { version = "=2.0.1", path = "impl" } +thiserror-impl = { version = "=2.0.2", path = "impl" } [dev-dependencies] anyhow = "1.0.73" diff --git a/impl/Cargo.toml b/impl/Cargo.toml index c0d6ddd..a95699e 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thiserror-impl" -version = "2.0.1" +version = "2.0.2" authors = ["David Tolnay "] description = "Implementation detail of the `thiserror` crate" edition = "2021" diff --git a/src/lib.rs b/src/lib.rs index 88c2c8f..55c42cd 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.1")] +#![doc(html_root_url = "https://docs.rs/thiserror/2.0.2")] #![allow( clippy::module_name_repetitions, clippy::needless_lifetimes,