diff --git a/CHANGELOG.md b/CHANGELOG.md index ddf3a96..34b6240 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/tailcallhq/tailcall-valid/compare/v0.1.2...v0.1.3) - 2024-12-02 + +### Added + +- use `Into` trait for `Valid::trace` ([#23](https://github.com/tailcallhq/tailcall-valid/pull/23)) + ## [0.1.2](https://github.com/tailcallhq/tailcall-valid/compare/v0.1.1...v0.1.2) - 2024-11-16 ### Other diff --git a/Cargo.lock b/Cargo.lock index 965565a..f7a1090 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -440,7 +440,7 @@ dependencies = [ [[package]] name = "tailcall-valid" -version = "0.1.2" +version = "0.1.3" dependencies = [ "derive_setters", "gh-workflow", diff --git a/Cargo.toml b/Cargo.toml index b459974..1630e0e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tailcall-valid" -version = "0.1.2" +version = "0.1.3" edition = "2021" description = "A Rust library for validating multiple inputs, collecting all possible errors instead of failing at the first error. Useful for scenarios where comprehensive feedback is required for user inputs or configuration settings." license = "Apache-2.0"