From d928ab23d1cde6c303d2decf2b6877dfc6682186 Mon Sep 17 00:00:00 2001 From: mcmah309 Date: Wed, 11 Sep 2024 22:27:08 +0000 Subject: [PATCH] chore: Bump --- Cargo.toml | 4 ++-- impl/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a56b87c..9d9ce8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,14 +3,14 @@ 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.5.1" +version = "0.5.2" edition = "2021" license = "Apache-2.0" documentation = "https://docs.rs/error_set" repository = "https://github.com/mcmah309/error_set" [dependencies] -error_set_impl = { version = "=0.5.1", path = "impl" } +error_set_impl = { version = "=0.5.2", path = "impl" } # features tracing = { version = "0.1", optional = true } diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 39872c8..25c2e7c 100644 --- a/impl/Cargo.toml +++ b/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.5.1" +version = "0.5.2" license = "Apache-2.0" documentation = "https://docs.rs/error_set" repository = "https://github.com/mcmah309/error_set"