-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR bumps the previous tag to v0.2.0 because v0.1.1 was not following SemVar. v0.1.1 was not & will not be published to crates.io This PR also adds a changelog
- Loading branch information
Showing
2 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>"] | ||
edition = "2021" | ||
|