Skip to content

Commit

Permalink
Prepare v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greyblake committed Jun 25, 2023
1 parent 7eb1ebd commit e8bb819
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### v0.3.0 - 2023-??-??
### v0.3.0 - 2023-06-25
* [BREAKING] `min_len` and `max_len` validators run against number of characters in a string (`val.chars().count()`), not number of bytes (`val.len()`).
* Add `finite` validation for float types which checks against NaN and infinity.
* Support deriving of `Default`
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions nutype/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nutype"
version = "0.2.0"
version = "0.3.0"
authors = ["Sergey Potapov <[email protected]>"]
edition = "2021"
description = "The newtype with guarantees."
Expand All @@ -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.2.0", path = "../nutype_macros" }
nutype_macros = { version = "0.3.0", path = "../nutype_macros" }

[features]
serde = ["nutype_macros/serde"]
Expand Down
2 changes: 1 addition & 1 deletion nutype_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nutype_macros"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
authors = ["Sergey Potapov <[email protected]>"]
description = "The newtype with guarantees."
Expand Down

0 comments on commit e8bb819

Please sign in to comment.