From 0a0d187b80e579980a67549653025a7441ae76db Mon Sep 17 00:00:00 2001 From: mcmah309 Date: Mon, 15 Apr 2024 04:21:27 +0000 Subject: [PATCH] chore: Bump --- Cargo.toml | 6 +++--- impl/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2ac8a8f..5b38f41 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,16 +1,16 @@ [package] name = "error_set" -description = "An error set macro that provides a concise way to define errors and ergonomically coerce a subset into a superset. Inspired by Zig's error set type." +description = "An error set macro that provides a concise way to define errors and ergonomically coerce between sets. Inspired by Zig's error set type." categories = ["rust-patterns"] keywords = ["error", "error-handling", "macro", "error-set"] -version = "0.3.0" +version = "0.3.1" 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.3.0", path = "impl" } +error_set_impl = { version = "=0.3.1", path = "impl" } [dev-dependencies] trybuild = "^1.0.91" diff --git a/impl/Cargo.toml b/impl/Cargo.toml index abe4c55..1da705c 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.3.0" +version = "0.3.1" license = "Apache-2.0" documentation = "https://docs.rs/error_set" repository = "https://github.com/mcmah309/error_set"