diff --git a/CHANGELOG.md b/CHANGELOG.md index cd0848b..19146e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -### v0.4.1 - 2024-04-07 +### v0.4.2 - 2024-04-07 * Support `no_std` ( the dependency needs to be declared as `nutype = { default-features = false }` ) * Support integration with [`arbitrary`](https://crates.io/crates/arbitrary) crate (see `arbitrary` feature). @@ -10,6 +10,10 @@ * Add `#[inline]` attribute to trivial functions * Improve error messages +### v0.4.1 - 2024-04-07 + +* Failed release. Includes everything from v0.4.2 except support of `Arbitrary` for `String` based types. + ### v0.4.0 - 2023-11-21 * Support of arbitrary inner types with custom sanitizers and validators. * Add numeric validator `greater` diff --git a/nutype/Cargo.toml b/nutype/Cargo.toml index b8210c9..ac04f68 100644 --- a/nutype/Cargo.toml +++ b/nutype/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nutype" -version = "0.4.1" +version = "0.4.2" 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.1", path = "../nutype_macros" } +nutype_macros = { version = "0.4.2", path = "../nutype_macros" } [features] default = ["std"] diff --git a/nutype_macros/Cargo.toml b/nutype_macros/Cargo.toml index 9a15083..a56ca2a 100644 --- a/nutype_macros/Cargo.toml +++ b/nutype_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nutype_macros" -version = "0.4.1" +version = "0.4.2" edition = "2021" authors = ["Serhii Potapov "] description = "The newtype with guarantees."