From a7d220d7915fb888413aa7978efd70f7006bda9d Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 19 Oct 2023 11:10:16 -0700 Subject: [PATCH] Release 1.0.50 --- 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 71cf1de..86e2429 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thiserror" -version = "1.0.49" +version = "1.0.50" 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.49", path = "impl" } +thiserror-impl = { version = "=1.0.50", path = "impl" } [dev-dependencies] anyhow = "1.0.73" diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 6a538a9..f96b888 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thiserror-impl" -version = "1.0.49" +version = "1.0.50" authors = ["David Tolnay "] description = "Implementation detail of the `thiserror` crate" edition = "2021" diff --git a/src/lib.rs b/src/lib.rs index 3242c1f..9740636 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.49")] +#![doc(html_root_url = "https://docs.rs/thiserror/1.0.50")] #![allow( clippy::module_name_repetitions, clippy::needless_lifetimes,