Skip to content

Commit

Permalink
Update README, CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
sondr3 committed May 13, 2020
1 parent b05911c commit b2fc2fc
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## v0.8.0 git-anger-lib

> 2020-05-13
Entirely a behind the scenes release, this is so that downstream users can properly use the features that they require:

- `json`: Turns on Serde serialization of the repo data
- `table`: Turns on printing a prettified table to `stdout`

## Changes

- [[`b05911cbd9`](https://github.com/sondr3/git-anger-management/commit/b05911cbd9)] - Release v0.8.0-lib
- [[`8e4745f94b`](https://github.com/sondr3/git-anger-management/commit/8e4745f94b)] - Properly feature gate features
- [[`f2ece8a634`](https://github.com/sondr3/git-anger-management/commit/f2ece8a634)] - Add READMEs for the individual workspace members
- [[`5e8cf95e7a`](https://github.com/sondr3/git-anger-management/commit/5e8cf95e7a)] - Update CI, README for workspace
- [[`a194a4d4d6`](https://github.com/sondr3/git-anger-management/commit/a194a4d4d6)] - Fix CI error
- [[`2c58f3939f`](https://github.com/sondr3/git-anger-management/commit/2c58f3939f)] - Split into workspace
- [[`c44b1a63bc`](https://github.com/sondr3/git-anger-management/commit/c44b1a63bc)] - Update changelog, installation instructions in README

## 0.7.0

> 2020-05-12
Expand Down
18 changes: 17 additions & 1 deletion lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,23 @@

This is the main library that drives the
[`git-anger-management`](https://crates.io/crates/git-anger-management)
CLI-application, this is not really useful for anything besides that.
CLI-application, this is not really useful for anything besides that... but if
you for some reason want to, feel free!

## Features:

**Note:** None of these features are enabled by default, so you have to opt into
it like so:

```toml
[dependencies]
git-anger-library = { version = "0.8.0", features=["table", "json"] }
```

- `json`: Enables Serde serialization of the processed data using with the
`print_json()` method.
- `table`: Enables pretty printing of the processed data using TabWriter with
the function `print_table()`.

## License

Expand Down

0 comments on commit b2fc2fc

Please sign in to comment.