From e2af0cc989f50eab68b928cd9589b29b03b7b809 Mon Sep 17 00:00:00 2001 From: Serhii Potapov Date: Sun, 28 Jan 2024 13:27:00 +0100 Subject: [PATCH] Prepare for release 0.4.1-beta.1 --- Cargo.lock | 4 ++-- nutype/Cargo.toml | 4 ++-- nutype_macros/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3b78afd..0e8377d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -221,14 +221,14 @@ dependencies = [ [[package]] name = "nutype" -version = "0.4.0" +version = "0.4.1-beta.1" dependencies = [ "nutype_macros", ] [[package]] name = "nutype_macros" -version = "0.4.0" +version = "0.4.1-beta.1" dependencies = [ "cfg-if", "kinded", diff --git a/nutype/Cargo.toml b/nutype/Cargo.toml index 7a6bb73..47f38cf 100644 --- a/nutype/Cargo.toml +++ b/nutype/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nutype" -version = "0.4.0" +version = "0.4.1-beta.1" authors = ["Serhii Potapov "] edition = "2021" description = "The newtype with guarantees." @@ -15,7 +15,7 @@ categories = ["data-structures", "rust-patterns"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nutype_macros = { version = "0.4.0", path = "../nutype_macros" } +nutype_macros = { version = "0.4.1-beta.1", path = "../nutype_macros" } [features] default = ["std"] diff --git a/nutype_macros/Cargo.toml b/nutype_macros/Cargo.toml index 65c9019..13f6be2 100644 --- a/nutype_macros/Cargo.toml +++ b/nutype_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nutype_macros" -version = "0.4.0" +version = "0.4.1-beta.1" edition = "2021" authors = ["Serhii Potapov "] description = "The newtype with guarantees."