diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ee9fd17 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# 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.2.3](https://github.com/near-cli-rs/interactive-clap/compare/interactive-clap-v0.2.2...interactive-clap-v0.2.3) - 2023-05-30 + +### Other +- Added README diff --git a/Cargo.toml b/Cargo.toml index 3fc6485..2e503c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ [package] name = "interactive-clap" -version = "0.2.2" +version = "0.2.3" 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.2" } +interactive-clap-derive = { path = "interactive-clap-derive", version = "0.2.3" } strum = { version = "0.24", features = ["derive"] } strum_macros = "0.24" diff --git a/interactive-clap-derive/CHANGELOG.md b/interactive-clap-derive/CHANGELOG.md new file mode 100644 index 0000000..1747d86 --- /dev/null +++ b/interactive-clap-derive/CHANGELOG.md @@ -0,0 +1,12 @@ +# 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.2.3](https://github.com/near-cli-rs/interactive-clap/compare/interactive-clap-derive-v0.2.2...interactive-clap-derive-v0.2.3) - 2023-05-30 + +### Fixed +- Trim unnecessary spaces in inquire prompts (fix it again after recent refactoring that reverted the previous fix) diff --git a/interactive-clap-derive/Cargo.toml b/interactive-clap-derive/Cargo.toml index 2d4f147..878a992 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.2" +version = "0.2.3" authors = ["FroVolod "] edition = "2018" license = "MIT OR Apache-2.0"