quicli v0.3.0 Release Notes

Release Date: 2018-06-10 // almost 6 years ago
  • 0.3.0 - 2018-06-10

    ➕ Added

    • The full code of the example projects from the guides is now also available in
      the repository's examples/ directory.
    • 0️⃣ A full-throttle feature was added and is enabled by default. Most
      dependencies are now optional and only available when this feature (or the
      dependency itself) is enabled. In practice, this means you can easily opt-out
      0️⃣ of default quicli features and only enable what you need.

    🛠 Fixed

    • 📦 Verbosity flag works for hyphenated package names

    🔄 Changed

    prelude::LoggerBuiler has been renamed to prelude::LoggerBuilder

    🖨 Now prints all causes after printing error in main!

    ⚡️ Update rayon to 1.0

    We now use the new clap-verbosity-flag crate for adding that -v flag:

    #[derive(Debug, StructOpt)]struct Cli { #[structopt(flatten)] verbosity: Verbosity, }