diff --git a/err_trail/Cargo.toml b/err_trail/Cargo.toml index d48ba32..6ed7929 100644 --- a/err_trail/Cargo.toml +++ b/err_trail/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "err_trail" description = "Add context to errors through logging" -version = "0.8.3" +version = "0.8.4" edition = "2021" license = "Apache-2.0" documentation = "https://docs.rs/err_trail" diff --git a/error_set/Cargo.toml b/error_set/Cargo.toml index ca7e14a..0dfb935 100644 --- a/error_set/Cargo.toml +++ b/error_set/Cargo.toml @@ -3,7 +3,7 @@ name = "error_set" description = "An error set macro that simplifies error management by providing a streamlined method for defining errors and easily converting between them. Inspired by Zig's error set type." categories = ["rust-patterns", "no-std"] keywords = ["error", "error-handling", "macro", "error-set"] -version = "0.8.3" +version = "0.8.4" edition = "2021" license = "Apache-2.0" documentation = "https://docs.rs/error_set" @@ -11,8 +11,8 @@ repository = "https://github.com/mcmah309/error_set" rust-version = "1.81" [dependencies] -error_set_impl = { version = "=0.8.3", path = "../error_set_impl" } -err_trail = {version = "=0.8.3", path = "../err_trail", default-features = false, optional = true } +error_set_impl = { version = "=0.8.4", path = "../error_set_impl" } +err_trail = {version = "=0.8.4", path = "../err_trail", default-features = false, optional = true } # features tracing = { version = "0.1", optional = true } diff --git a/error_set_impl/Cargo.toml b/error_set_impl/Cargo.toml index 75c5b5e..c108061 100644 --- a/error_set_impl/Cargo.toml +++ b/error_set_impl/Cargo.toml @@ -2,7 +2,7 @@ name = "error_set_impl" edition = "2021" description = "Implementation of the proc macro for the error_set crate." -version = "0.8.3" +version = "0.8.4" license = "Apache-2.0" documentation = "https://docs.rs/error_set" repository = "https://github.com/mcmah309/error_set"