diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..87e6cb5 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,33 @@ +# 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.1.0/), +and as of v0.2.0, this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [0.2.0] 2024-09-05 + +### Breaking Changes + +- Removes a sync trait bound on the wrapped inputs and outputs + +### Added + +- CHANGELOG.md + +### Fixed + +- Follows SemVer + +## [0.1.1] 2024-07-25 [YANKED] + +NOTE: This release only existed as a git tag, and will not be posted to +crates.io because it did not follow SemVer. + +### Fixed + +- Removed an unguaranteeable sync requirement on the wrapped Input & Output + +## [0.1.0] 2023-01-12 + +First release diff --git a/Cargo.toml b/Cargo.toml index a12ac5c..952578e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clap-io" -version = "0.1.1" +version = "0.2.0" description = "Add input and output flags to clap commands" authors = ["Swift Navigation "] edition = "2021"