Skip to content

Commit 3fce8c6

Browse files
committed
Prepare v0.4.2
1 parent c3248e2 commit 3fce8c6

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### v0.4.1 - 2024-04-07
1+
### v0.4.2 - 2024-04-07
22

33
* Support `no_std` ( the dependency needs to be declared as `nutype = { default-features = false }` )
44
* Support integration with [`arbitrary`](https://crates.io/crates/arbitrary) crate (see `arbitrary` feature).
@@ -10,6 +10,10 @@
1010
* Add `#[inline]` attribute to trivial functions
1111
* Improve error messages
1212

13+
### v0.4.1 - 2024-04-07
14+
15+
* Failed release. Includes everything from v0.4.2 except support of `Arbitrary` for `String` based types.
16+
1317
### v0.4.0 - 2023-11-21
1418
* Support of arbitrary inner types with custom sanitizers and validators.
1519
* Add numeric validator `greater`

nutype/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nutype"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Serhii Potapov <[email protected]>"]
55
edition = "2021"
66
description = "The newtype with guarantees."
@@ -15,7 +15,7 @@ categories = ["data-structures", "rust-patterns"]
1515
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1616

1717
[dependencies]
18-
nutype_macros = { version = "0.4.1", path = "../nutype_macros" }
18+
nutype_macros = { version = "0.4.2", path = "../nutype_macros" }
1919

2020
[features]
2121
default = ["std"]

nutype_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nutype_macros"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
edition = "2021"
55
authors = ["Serhii Potapov <[email protected]>"]
66
description = "The newtype with guarantees."

0 commit comments

Comments
 (0)