From 5d9579f55e909dd5fbf528918661f1876682de84 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Nov 2024 11:13:02 -0800 Subject: [PATCH] chore: release v0.1.2 (#20) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 14 ++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ddf3a96 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.2](https://github.com/tailcallhq/tailcall-valid/compare/v0.1.1...v0.1.2) - 2024-11-16 + +### Other + +- lint fixes diff --git a/Cargo.lock b/Cargo.lock index 74eb02b..965565a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -440,7 +440,7 @@ dependencies = [ [[package]] name = "tailcall-valid" -version = "0.1.1" +version = "0.1.2" dependencies = [ "derive_setters", "gh-workflow", diff --git a/Cargo.toml b/Cargo.toml index 2585e31..b459974 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tailcall-valid" -version = "0.1.1" +version = "0.1.2" 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"