diff --git a/CHANGELOG.md b/CHANGELOG.md index c1983f1..4805ef1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [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 +- Add support for "subargs" ([#17](https://github.com/near-cli-rs/interactive-clap/pull/17)) + ## [0.2.9](https://github.com/near-cli-rs/interactive-clap/compare/interactive-clap-v0.2.8...interactive-clap-v0.2.9) - 2024-03-25 ### Added diff --git a/Cargo.toml b/Cargo.toml index 0752b4f..93e04c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ [package] name = "interactive-clap" -version = "0.2.9" +version = "0.2.10" 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.9" } +interactive-clap-derive = { path = "interactive-clap-derive", version = "0.2.10" } 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 0ed9eed..528bfab 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.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 +- Add support for "subargs" ([#17](https://github.com/near-cli-rs/interactive-clap/pull/17)) + ## [0.2.9](https://github.com/near-cli-rs/interactive-clap/compare/interactive-clap-derive-v0.2.8...interactive-clap-derive-v0.2.9) - 2024-03-25 ### Added diff --git a/interactive-clap-derive/Cargo.toml b/interactive-clap-derive/Cargo.toml index ae56cde..e5acb45 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.9" +version = "0.2.10" authors = ["FroVolod "] edition = "2018" license = "MIT OR Apache-2.0"