diff --git a/Cargo.toml b/Cargo.toml index a90624d..f3160f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thiserror" -version = "1.0.41" +version = "1.0.42" 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.41", path = "impl" } +thiserror-impl = { version = "=1.0.42", path = "impl" } [dev-dependencies] anyhow = "1.0.71" diff --git a/impl/Cargo.toml b/impl/Cargo.toml index a5bd868..fa2038e 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thiserror-impl" -version = "1.0.41" +version = "1.0.42" authors = ["David Tolnay "] description = "Implementation detail of the `thiserror` crate" edition = "2021" diff --git a/src/lib.rs b/src/lib.rs index 0f885d8..e6b2b4a 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.41")] +#![doc(html_root_url = "https://docs.rs/thiserror/1.0.42")] #![allow( // Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7421 clippy::doc_markdown,