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

Commit d2ad07c

Browse files
authored
Merge pull request #82 from killercup/release/0.3.0
Bump version to 0.3 and add change log entries
2 parents 4af3503 + abd8eed commit d2ad07c

File tree

10 files changed

+34
-14
lines changed

10 files changed

+34
-14
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quicli"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "Quickly build cool CLI apps in Rust."
55
authors = ["Pascal Hertleif <[email protected]>"]
66
readme = "Readme.md"

Changelog.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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

docs/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Add _quicli_ as an dependency by adding this line
4343
to the `Cargo.toml` file:
4444

4545
```toml file=Cargo.toml
46-
quicli = "0.2"
46+
quicli = "0.3"
4747
```
4848

4949
## Import quicli

docs/commit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ authors = ["Your Name <[email protected]>"]
2323
Add quicli to your dependencies:
2424

2525
```toml file=Cargo.toml
26-
quicli = "0.2"
26+
quicli = "0.3"
2727
```
2828

2929
We'll get out commit messages from the glorious website

docs/thumbnails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ authors = ["Your Name <[email protected]>"]
3131
As always, add _quicli_ to your dependencies:
3232

3333
```toml file=Cargo.toml
34-
quicli = "0.2"
34+
quicli = "0.3"
3535
```
3636

3737
Since we need to resize images,

examples/Readme/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ version = "0.1.0"
44
authors = ["Your Name <[email protected]>"]
55

66
[dependencies]
7-
quicli = "0.2"
7+
quicli = "0.3"

examples/commit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ version = "0.1.0"
44
authors = ["Your Name <[email protected]>"]
55

66
[dependencies]
7-
quicli = "0.2"
7+
quicli = "0.3"
88
reqwest = "0.8"
99
serde = "1"

examples/thumbnails/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ version = "0.1.0"
44
authors = ["Your Name <[email protected]>"]
55

66
[dependencies]
7-
quicli = "0.2"
7+
quicli = "0.3"
88
image = "0.18"

examples/verbosity/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["Christopher Durham <[email protected]>"]
55

66
[dependencies]
7-
quicli = "0.2"
7+
quicli = "0.3"
88

99
[dev-dependencies]
1010
assert_cli = "0.5.4"

0 commit comments

Comments
 (0)