Skip to content

Commit

Permalink
Added unstable feature
Browse files Browse the repository at this point in the history
  • Loading branch information
ventaquil committed Aug 21, 2023
1 parent caa66cc commit 595306e
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .cargo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,9 @@ Implemented hash algorithms:
### Options

* `color`: Enables colored output.
* `unstable`: Enables unstable options.

By default all of them are enabled.
By default only `color` is enabled.

## Disclaimer

Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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]

### Added

- Added `unstable` feature.

## [0.3.1] - 2023-08-19

### Fixed
Expand Down Expand Up @@ -50,6 +56,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release.

[Unreleased]: https://github.com/ferric-bytes/chksum-cli/compare/v0.3.1...HEAD
[0.3.1]: https://github.com/ferric-bytes/chksum-cli/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/ferric-bytes/chksum-cli/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/ferric-bytes/chksum-cli/releases/tag/v0.2.0
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
anyhow = "1.0.72"
chksum = "0.2.1"
chksum = "0.2.2"
clap = { version = "4.3.19", features = ["cargo", "derive", "wrap_help", "unicode"] }
colored = { version = "2.0.4", optional = true }
exitcode = "1.1.2"
Expand All @@ -43,6 +43,7 @@ default = [

# compilation
color = ["colored"]
unstable = ["chksum/unstable"]

# algorithms
md5 = ["chksum/md5"]
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,9 @@ Implemented hash algorithms:
### Options

* `color`: Enables colored output.
* `unstable`: Enables unstable options.

By default all of them are enabled.
By default only `color` is enabled.

## Disclaimer

Expand Down

0 comments on commit 595306e

Please sign in to comment.