Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #82 from killercup/release/0.3.0
Browse files Browse the repository at this point in the history
Bump version to 0.3 and add change log entries
  • Loading branch information
killercup authored Jun 10, 2018
2 parents 4af3503 + abd8eed commit d2ad07c
Show file tree
Hide file tree
Showing 10 changed files with 34 additions and 14 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quicli"
version = "0.2.0"
version = "0.3.0"
description = "Quickly build cool CLI apps in Rust."
authors = ["Pascal Hertleif <[email protected]>"]
readme = "Readme.md"
Expand Down
22 changes: 21 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [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.
- 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
of default quicli features and only enable what you need.

[`examples/`]: https://github.com/killercup/quicli/tree/master/examples

Expand All @@ -20,6 +26,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### 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:

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

[clap-verbosity-flag]: https://crates.io/crates/clap-verbosity-flag

## [0.2.0] - 2018-02-11

Expand Down Expand Up @@ -92,7 +111,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Commit Message generator example
- read/write file functions

[Unreleased]: https://github.com/killercup/quicli/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/killercup/quicli/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/killercup/quicli/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/killercup/quicli/compare/v0.1.4...v0.2.0
[0.1.4]: https://github.com/killercup/quicli/compare/v0.1.3...v0.1.4
[0.1.3]: https://github.com/killercup/quicli/compare/v0.1.2...v0.1.3
Expand Down
2 changes: 1 addition & 1 deletion docs/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Add _quicli_ as an dependency by adding this line
to the `Cargo.toml` file:

```toml file=Cargo.toml
quicli = "0.2"
quicli = "0.3"
```

## Import quicli
Expand Down
2 changes: 1 addition & 1 deletion docs/commit.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ authors = ["Your Name <[email protected]>"]
Add quicli to your dependencies:

```toml file=Cargo.toml
quicli = "0.2"
quicli = "0.3"
```

We'll get out commit messages from the glorious website
Expand Down
2 changes: 1 addition & 1 deletion docs/thumbnails.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ authors = ["Your Name <[email protected]>"]
As always, add _quicli_ to your dependencies:

```toml file=Cargo.toml
quicli = "0.2"
quicli = "0.3"
```

Since we need to resize images,
Expand Down
2 changes: 1 addition & 1 deletion examples/Readme/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ version = "0.1.0"
authors = ["Your Name <[email protected]>"]

[dependencies]
quicli = "0.2"
quicli = "0.3"
2 changes: 1 addition & 1 deletion examples/commit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ version = "0.1.0"
authors = ["Your Name <[email protected]>"]

[dependencies]
quicli = "0.2"
quicli = "0.3"
reqwest = "0.8"
serde = "1"
2 changes: 1 addition & 1 deletion examples/thumbnails/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ version = "0.1.0"
authors = ["Your Name <[email protected]>"]

[dependencies]
quicli = "0.2"
quicli = "0.3"
image = "0.18"
2 changes: 1 addition & 1 deletion examples/verbosity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
authors = ["Christopher Durham <[email protected]>"]

[dependencies]
quicli = "0.2"
quicli = "0.3"

[dev-dependencies]
assert_cli = "0.5.4"

0 comments on commit d2ad07c

Please sign in to comment.