From a7031fcabff8e37cdcbe25a8f2e993ca393d4f9a Mon Sep 17 00:00:00 2001 From: Vlad Frolov Date: Fri, 9 Aug 2024 13:36:29 +0200 Subject: [PATCH] chore: release v0.3.0 (#20) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 🤖 New release * `interactive-clap-derive`: 0.2.10 -> 0.3.0 * `interactive-clap`: 0.2.10 -> 0.3.0
Changelog

## `interactive-clap-derive`

## [0.3.0](https://github.com/near-cli-rs/interactive-clap/compare/interactive-clap-derive-v0.2.10...interactive-clap-derive-v0.3.0) - 2024-08-09 ### Fixed - [**breaking**] Proxy `try_parse_from` to Clap's `try_parse_from` as is, instead of naive parsing of `&str` ([#21](https://github.com/near-cli-rs/interactive-clap/pull/21))
## `interactive-clap`
## [0.3.0](https://github.com/near-cli-rs/interactive-clap/compare/interactive-clap-v0.2.10...interactive-clap-v0.3.0) - 2024-08-09 ### Fixed - [**breaking**] Proxy `try_parse_from` to Clap's `try_parse_from` as is, instead of naive parsing of `&str` ([#21](https://github.com/near-cli-rs/interactive-clap/pull/21)) ### Other - Updated examples:struct_with_flatten ([#19](https://github.com/near-cli-rs/interactive-clap/pull/19))

--- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/). --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 4 ++-- interactive-clap-derive/CHANGELOG.md | 5 +++++ interactive-clap-derive/Cargo.toml | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4805ef1..5c10319 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/near-cli-rs/interactive-clap/compare/interactive-clap-v0.2.10...interactive-clap-v0.3.0) - 2024-08-09 + +### Fixed +- [**breaking**] Proxy `try_parse_from` to Clap's `try_parse_from` as is, instead of naive parsing of `&str` ([#21](https://github.com/near-cli-rs/interactive-clap/pull/21)) + +### Other +- Updated examples:struct_with_flatten ([#19](https://github.com/near-cli-rs/interactive-clap/pull/19)) + ## [0.2.10](https://github.com/near-cli-rs/interactive-clap/compare/interactive-clap-v0.2.9...interactive-clap-v0.2.10) - 2024-04-21 ### Added diff --git a/Cargo.toml b/Cargo.toml index 77a4c6f..8660e4f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ [package] name = "interactive-clap" -version = "0.2.10" +version = "0.3.0" authors = ["FroVolod "] edition = "2018" license = "MIT OR Apache-2.0" @@ -15,7 +15,7 @@ description = "Interactive mode extension crate to Command Line Arguments Parser # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -interactive-clap-derive = { path = "interactive-clap-derive", version = "0.2.10" } +interactive-clap-derive = { path = "interactive-clap-derive", version = "0.3.0" } strum = { version = "0.24", features = ["derive"] } strum_macros = "0.24" diff --git a/interactive-clap-derive/CHANGELOG.md b/interactive-clap-derive/CHANGELOG.md index 528bfab..3c8a57d 100644 --- a/interactive-clap-derive/CHANGELOG.md +++ b/interactive-clap-derive/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/near-cli-rs/interactive-clap/compare/interactive-clap-derive-v0.2.10...interactive-clap-derive-v0.3.0) - 2024-08-09 + +### Fixed +- [**breaking**] Proxy `try_parse_from` to Clap's `try_parse_from` as is, instead of naive parsing of `&str` ([#21](https://github.com/near-cli-rs/interactive-clap/pull/21)) + ## [0.2.10](https://github.com/near-cli-rs/interactive-clap/compare/interactive-clap-derive-v0.2.9...interactive-clap-derive-v0.2.10) - 2024-04-21 ### Added diff --git a/interactive-clap-derive/Cargo.toml b/interactive-clap-derive/Cargo.toml index e5acb45..2bcdc34 100644 --- a/interactive-clap-derive/Cargo.toml +++ b/interactive-clap-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "interactive-clap-derive" -version = "0.2.10" +version = "0.3.0" authors = ["FroVolod "] edition = "2018" license = "MIT OR Apache-2.0"