@@ -6,10 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66
77## [ Unreleased]
88
9+ ## [ 0.3.0] - 2018-06-10
10+
911### Added
1012
1113- The full code of the example projects from the guides is now also available in
1214 the repository's [ ` examples/ ` ] directory.
15+ - A ` full-throttle ` feature was added and is enabled by default. Most
16+ dependencies are now optional and only available when this feature (or the
17+ dependency itself) is enabled. In practice, this means you can easily opt-out
18+ of default quicli features and only enable what you need.
1319
1420[ `examples/` ] : https://github.com/killercup/quicli/tree/master/examples
1521
@@ -20,6 +26,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2026### Changed
2127
2228- ` prelude::LoggerBuiler ` has been renamed to ` prelude::LoggerBuilder `
29+ - Now prints all causes after printing error in ` main! `
30+ - Update rayon to 1.0
31+ - We now use the new [ clap-verbosity-flag] crate for adding that ` -v ` flag:
32+
33+ ``` rust
34+ #[derive(Debug , StructOpt )]
35+ struct Cli {
36+ #[structopt(flatten)]
37+ verbosity : Verbosity ,
38+ }
39+ ```
40+
41+ [clap - verbosity - flag ]: https : // crates.io/crates/clap-verbosity-flag
2342
2443## [0.2 . 0 ] - 2018 - 02 - 11
2544
@@ -92,7 +111,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
92111- Commit Message generator example
93112- read / write file functions
94113
95- [Unreleased ]: https : // github.com/killercup/quicli/compare/v0.2.0...HEAD
114+ [Unreleased ]: https : // github.com/killercup/quicli/compare/v0.3.0...HEAD
115+ [0.3 . 0 ]: https : // github.com/killercup/quicli/compare/v0.2.0...v0.3.0
96116[0.2 . 0 ]: https : // github.com/killercup/quicli/compare/v0.1.4...v0.2.0
97117[0.1 . 4 ]: https : // github.com/killercup/quicli/compare/v0.1.3...v0.1.4
98118[0.1 . 3 ]: https : // github.com/killercup/quicli/compare/v0.1.2...v0.1.3
0 commit comments