Skip to content

Commit 93f4bf5

Browse files
authored
Merge pull request #205 from greyblake/prepare-v060
Prepare v0.6.0
2 parents 3efaa7a + 8697b8a commit 93f4bf5

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
### v0.x.x - 2025-xx-xx
2-
- **[BREAKING]** Fallible `::new()` constructor is removed (was deprecated in 0.4.3).
1+
### v0.6.0 - 2025-02-02
32
- **[FEATURE]** Ability to instantiate types in `const` context, when declared with `const_fn` flag.
43
- **[FEATURE]** Support `derive(IntoIterator)` for inner types that implement `IntoIterator`.
54
- **[FIX]** Enable `&'a str` as an inner type.
5+
- **[BREAKING]** Fallible `::new()` constructor is removed (was deprecated in 0.4.3).
66

77
### v0.5.1 - 2024-12-20
88

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/no_std_example/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nutype/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nutype"
3-
version = "0.5.1"
3+
version = "0.6.0"
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.5.1", path = "../nutype_macros" }
18+
nutype_macros = { version = "0.6.0", path = "../nutype_macros" }
1919

2020
[dev-dependencies]
2121
regex = "1.0"

nutype_macros/Cargo.toml

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

0 commit comments

Comments
 (0)