Skip to content

Commit

Permalink
Release version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sondr3 committed Dec 27, 2018
1 parent 53e31ad commit f8dfa34
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.6.0
> 2018-12-27
This release adds progress bars when running `git-anger-management`. Useful when
parsing commits in larger repositories as this will show the elapsed time, time
remaining etc. The rest of the changes are behind-the-scenes stuff, updated
dependencies and updated to the latest Rust edition (2018).

* [[`53e31ad5a8`](https://github.com/sondr3/git-anger-management/commit/53e31ad5a8)] - Update README to include asciinema "video" of output
* [[`4f0a873733`](https://github.com/sondr3/git-anger-management/commit/4f0a873733)] - Update CLI struct to use newer StructOpt changes
* [[`27937aced4`](https://github.com/sondr3/git-anger-management/commit/27937aced4)] - Update to Rust 2018
* [[`3b441d666b`](https://github.com/sondr3/git-anger-management/commit/3b441d666b)] - Update Travis configuration
* [[`db5c363fe5`](https://github.com/sondr3/git-anger-management/commit/db5c363fe5)] - Update dependencies
* [[`544204594f`](https://github.com/sondr3/git-anger-management/commit/544204594f)] - Remove version-sync from dev-dependencies
* [[`e9348326cd`](https://github.com/sondr3/git-anger-management/commit/e9348326cd)] - Add progress bars to CLI to track progress
* [[`ce0b7678ec`](https://github.com/sondr3/git-anger-management/commit/ce0b7678ec)] - Move magic commands to below documentation, add a few more deny things

## 0.5.1
> 2018-11-09
Expand Down Expand Up @@ -104,3 +121,4 @@ for more details.
* [[`475c2efb63`](https://github.com/sondr3/git-anger-management/commit/475c2efb63)] - Add a bunch of curse words
* [[`6840a70e5c`](https://github.com/sondr3/git-anger-management/commit/6840a70e5c)] - Add git2 as a dependency
* [[`5329b2e938`](https://github.com/sondr3/git-anger-management/commit/5329b2e938)] - In the beginning there was darkness...

2 changes: 1 addition & 1 deletion 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 = "git-anger-management"
version = "0.5.1"
version = "0.6.0"
edition = "2018"
authors = ["Sondre Nilsen <nilsen.sondre@gmail.com>"]
description = "Count your naughty words in git commit messages"
Expand Down
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
//! you. Simply run it against your repository and it'll tell you who is the
//! naughtiest of them all.
//!
//! [![asciicast](https://asciinema.org/a/218651.svg)](https://asciinema.org/a/218651)
//!
//! ## Why
//!
//! Some times the only way to vent at the ridiculous crap we make is to write
Expand Down Expand Up @@ -66,6 +68,7 @@
//! ```
//!
//! Or look at the help by running `git anger-management -h`.
#![doc(html_root_url = "https://docs.rs/git-anger-management/0.6.0")]
#![cfg_attr(feature = "fail-on-warnings", deny(warnings))]
#![forbid(unsafe_code)]
#![deny(
Expand Down

0 comments on commit f8dfa34

Please sign in to comment.