From c535cecb6f8d98cbdc72f526fc4c8a8ae826e2a3 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 21 Dec 2024 10:26:04 -0800 Subject: [PATCH] Release 2.0.9 --- 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 578608b..fed8f7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thiserror" -version = "2.0.8" +version = "2.0.9" authors = ["David Tolnay "] categories = ["rust-patterns"] description = "derive(Error)" @@ -28,7 +28,7 @@ default = ["std"] std = [] [dependencies] -thiserror-impl = { version = "=2.0.8", path = "impl" } +thiserror-impl = { version = "=2.0.9", path = "impl" } [dev-dependencies] anyhow = "1.0.73" diff --git a/impl/Cargo.toml b/impl/Cargo.toml index cd6fd90..d08bcf9 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thiserror-impl" -version = "2.0.8" +version = "2.0.9" authors = ["David Tolnay "] description = "Implementation detail of the `thiserror` crate" edition = "2021" diff --git a/src/lib.rs b/src/lib.rs index 579865a..5145c1c 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.8")] +#![doc(html_root_url = "https://docs.rs/thiserror/2.0.9")] #![allow( clippy::module_name_repetitions, clippy::needless_lifetimes,