From 88e23cce3876d684484c8d635ae42f9aba34a53c Mon Sep 17 00:00:00 2001 From: mcmah309 Date: Wed, 18 Sep 2024 08:14:10 +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 fdb63d6..d79b21b 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.4" +version = "0.6.0" 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.4", path = "impl" } +error_set_impl = { version = "=0.6.0", path = "impl" } # features tracing = { version = "0.1", optional = true } diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 91dd589..c7e869e 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.4" +version = "0.6.0" license = "Apache-2.0" documentation = "https://docs.rs/error_set" repository = "https://github.com/mcmah309/error_set"