From e7ad85ee6b135c5748d37ed1e8edda950336af77 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 20 Apr 2024 12:12:57 -0700 Subject: [PATCH] Release 1.0.59 --- 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 2468f29..36462e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thiserror" -version = "1.0.58" +version = "1.0.59" authors = ["David Tolnay "] categories = ["rust-patterns"] description = "derive(Error)" @@ -12,7 +12,7 @@ repository = "https://github.com/dtolnay/thiserror" rust-version = "1.56" [dependencies] -thiserror-impl = { version = "=1.0.58", path = "impl" } +thiserror-impl = { version = "=1.0.59", path = "impl" } [dev-dependencies] anyhow = "1.0.73" diff --git a/impl/Cargo.toml b/impl/Cargo.toml index cc02dc1..f2f8ac2 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thiserror-impl" -version = "1.0.58" +version = "1.0.59" authors = ["David Tolnay "] description = "Implementation detail of the `thiserror` crate" edition = "2021" diff --git a/src/lib.rs b/src/lib.rs index c525f57..5b07dca 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.58")] +#![doc(html_root_url = "https://docs.rs/thiserror/1.0.59")] #![allow( clippy::module_name_repetitions, clippy::needless_lifetimes,