From 17820693b125f806848bd53aac3f24f748a368f6 Mon Sep 17 00:00:00 2001 From: mcmah309 Date: Mon, 28 Oct 2024 14:40: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 fe77397..b8a89cf 100644 --- a/Cargo.toml +++ b/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.6.5" +version = "0.6.6" edition = "2021" license = "Apache-2.0" documentation = "https://docs.rs/error_set" @@ -11,7 +11,7 @@ repository = "https://github.com/mcmah309/error_set" rust-version = "1.81" [dependencies] -error_set_impl = { version = "=0.6.5", path = "impl" } +error_set_impl = { version = "=0.6.6", path = "impl" } # features tracing = { version = "0.1", optional = true } diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 141973c..df84581 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.6.5" +version = "0.6.6" license = "Apache-2.0" documentation = "https://docs.rs/error_set" repository = "https://github.com/mcmah309/error_set"