From 281997e7606bd90c70b39e114a4d26b733e63b30 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 4 Jul 2023 12:29:02 -0700 Subject: [PATCH] Release 1.0.41 --- 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 3a1e6f1..39572bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thiserror" -version = "1.0.40" +version = "1.0.41" 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.40", path = "impl" } +thiserror-impl = { version = "=1.0.41", path = "impl" } [dev-dependencies] anyhow = "1.0.71" diff --git a/impl/Cargo.toml b/impl/Cargo.toml index e317e24..affe901 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thiserror-impl" -version = "1.0.40" +version = "1.0.41" authors = ["David Tolnay "] description = "Implementation detail of the `thiserror` crate" edition = "2018" diff --git a/src/lib.rs b/src/lib.rs index 94bd860..f78ee7e 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.40")] +#![doc(html_root_url = "https://docs.rs/thiserror/1.0.41")] #![allow( // Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7421 clippy::doc_markdown,