From da83cbf24c1bf21dcfadd16b9368b3f4c714e61e Mon Sep 17 00:00:00 2001 From: Serhii Potapov Date: Sat, 6 Jul 2024 17:57:54 +0200 Subject: [PATCH] Prepare v0.4.3 --- CHANGELOG.md | 2 ++ Cargo.lock | 4 ++-- examples/no_std_example/Cargo.lock | 4 ++-- nutype/Cargo.toml | 4 ++-- nutype_macros/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfdb1aa..a0666d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ### v0.x.x - 2024-xx-xx +### v0.4.3 - 2024-07-06 + * Support generics * [DEPRECATION] Fallible constructor `::new()` is deprecated. Users should use `::try_new()` instead. * [FIX] Use absolute path for `::core::result::Result` when generating code for `derive(TryFrom)`. diff --git a/Cargo.lock b/Cargo.lock index 93ad527..b952661 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -305,7 +305,7 @@ dependencies = [ [[package]] name = "nutype" -version = "0.4.3-beta.1" +version = "0.4.3" dependencies = [ "lazy_static", "nutype_macros", @@ -315,7 +315,7 @@ dependencies = [ [[package]] name = "nutype_macros" -version = "0.4.3-beta.1" +version = "0.4.3" dependencies = [ "cfg-if", "kinded", diff --git a/examples/no_std_example/Cargo.lock b/examples/no_std_example/Cargo.lock index 97c9992..01a3790 100644 --- a/examples/no_std_example/Cargo.lock +++ b/examples/no_std_example/Cargo.lock @@ -47,14 +47,14 @@ dependencies = [ [[package]] name = "nutype" -version = "0.4.3-beta.1" +version = "0.4.3" dependencies = [ "nutype_macros", ] [[package]] name = "nutype_macros" -version = "0.4.3-beta.1" +version = "0.4.3" dependencies = [ "cfg-if", "kinded", diff --git a/nutype/Cargo.toml b/nutype/Cargo.toml index e6d1f43..a04a39b 100644 --- a/nutype/Cargo.toml +++ b/nutype/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nutype" -version = "0.4.3-beta.1" +version = "0.4.3" 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.3-beta.1", path = "../nutype_macros" } +nutype_macros = { version = "0.4.3", path = "../nutype_macros" } [dev-dependencies] regex = "1.0" diff --git a/nutype_macros/Cargo.toml b/nutype_macros/Cargo.toml index 4fe5789..ef7fe0d 100644 --- a/nutype_macros/Cargo.toml +++ b/nutype_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nutype_macros" -version = "0.4.3-beta.1" +version = "0.4.3" edition = "2021" authors = ["Serhii Potapov "] description = "The newtype with guarantees."