From a627fc0c9f577f5e77ba5abf653cfbdffff48a25 Mon Sep 17 00:00:00 2001 From: Vlad Frolov Date: Sat, 30 Sep 2023 08:29:22 +0200 Subject: [PATCH] chore: release (#8) Signed-off-by: release-plz Co-authored-by: release-plz --- CHANGELOG.md | 6 ++++++ Cargo.toml | 4 ++-- interactive-clap-derive/CHANGELOG.md | 9 +++++++++ interactive-clap-derive/Cargo.toml | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ca602d..26096a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.5](https://github.com/near-cli-rs/interactive-clap/compare/interactive-clap-v0.2.4...interactive-clap-v0.2.5) - 2023-09-21 + +### Other +- added fn try_parse_from() +- Merge branch 'master' of https://github.com/FroVolod/interactive-clap + ## [0.2.4](https://github.com/near-cli-rs/interactive-clap/compare/interactive-clap-v0.2.3...interactive-clap-v0.2.4) - 2023-06-02 ### Added diff --git a/Cargo.toml b/Cargo.toml index 3c46442..90de110 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ [package] name = "interactive-clap" -version = "0.2.4" +version = "0.2.5" 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.4" } +interactive-clap-derive = { path = "interactive-clap-derive", version = "0.2.5" } 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 8fbd5c7..a805200 100644 --- a/interactive-clap-derive/CHANGELOG.md +++ b/interactive-clap-derive/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.5](https://github.com/near-cli-rs/interactive-clap/compare/interactive-clap-derive-v0.2.4...interactive-clap-derive-v0.2.5) - 2023-09-21 + +### Fixed +- fixed unnamed_args/args_without_attrs conflict + +### Other +- added fn try_parse_from() +- Merge branch 'master' of https://github.com/FroVolod/interactive-clap + ## [0.2.4](https://github.com/near-cli-rs/interactive-clap/compare/interactive-clap-derive-v0.2.3...interactive-clap-derive-v0.2.4) - 2023-06-02 ### Added diff --git a/interactive-clap-derive/Cargo.toml b/interactive-clap-derive/Cargo.toml index 33ef318..c68b88b 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.4" +version = "0.2.5" authors = ["FroVolod "] edition = "2018" license = "MIT OR Apache-2.0"