Skip to content

Commit f8dfa34

Browse files
committed
Release version 0.6.0
1 parent 53e31ad commit f8dfa34

File tree

4 files changed

+23
-2
lines changed

4 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 0.6.0
2+
> 2018-12-27
3+
4+
This release adds progress bars when running `git-anger-management`. Useful when
5+
parsing commits in larger repositories as this will show the elapsed time, time
6+
remaining etc. The rest of the changes are behind-the-scenes stuff, updated
7+
dependencies and updated to the latest Rust edition (2018).
8+
9+
* [[`53e31ad5a8`](https://github.com/sondr3/git-anger-management/commit/53e31ad5a8)] - Update README to include asciinema "video" of output
10+
* [[`4f0a873733`](https://github.com/sondr3/git-anger-management/commit/4f0a873733)] - Update CLI struct to use newer StructOpt changes
11+
* [[`27937aced4`](https://github.com/sondr3/git-anger-management/commit/27937aced4)] - Update to Rust 2018
12+
* [[`3b441d666b`](https://github.com/sondr3/git-anger-management/commit/3b441d666b)] - Update Travis configuration
13+
* [[`db5c363fe5`](https://github.com/sondr3/git-anger-management/commit/db5c363fe5)] - Update dependencies
14+
* [[`544204594f`](https://github.com/sondr3/git-anger-management/commit/544204594f)] - Remove version-sync from dev-dependencies
15+
* [[`e9348326cd`](https://github.com/sondr3/git-anger-management/commit/e9348326cd)] - Add progress bars to CLI to track progress
16+
* [[`ce0b7678ec`](https://github.com/sondr3/git-anger-management/commit/ce0b7678ec)] - Move magic commands to below documentation, add a few more deny things
17+
118
## 0.5.1
219
> 2018-11-09
320
@@ -104,3 +121,4 @@ for more details.
104121
* [[`475c2efb63`](https://github.com/sondr3/git-anger-management/commit/475c2efb63)] - Add a bunch of curse words
105122
* [[`6840a70e5c`](https://github.com/sondr3/git-anger-management/commit/6840a70e5c)] - Add git2 as a dependency
106123
* [[`5329b2e938`](https://github.com/sondr3/git-anger-management/commit/5329b2e938)] - In the beginning there was darkness...
124+

Cargo.lock

Lines changed: 1 addition & 1 deletion
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 = "git-anger-management"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
edition = "2018"
55
authors = ["Sondre Nilsen <nilsen.sondre@gmail.com>"]
66
description = "Count your naughty words in git commit messages"

src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
//! you. Simply run it against your repository and it'll tell you who is the
88
//! naughtiest of them all.
99
//!
10+
//! [![asciicast](https://asciinema.org/a/218651.svg)](https://asciinema.org/a/218651)
11+
//!
1012
//! ## Why
1113
//!
1214
//! Some times the only way to vent at the ridiculous crap we make is to write
@@ -66,6 +68,7 @@
6668
//! ```
6769
//!
6870
//! Or look at the help by running `git anger-management -h`.
71+
#![doc(html_root_url = "https://docs.rs/git-anger-management/0.6.0")]
6972
#![cfg_attr(feature = "fail-on-warnings", deny(warnings))]
7073
#![forbid(unsafe_code)]
7174
#![deny(

0 commit comments

Comments
 (0)