Skip to content

Commit b2fc2fc

Browse files
committed
Update README, CHANGELOG
1 parent b05911c commit b2fc2fc

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## v0.8.0 git-anger-lib
2+
3+
> 2020-05-13
4+
5+
Entirely a behind the scenes release, this is so that downstream users can properly use the features that they require:
6+
7+
- `json`: Turns on Serde serialization of the repo data
8+
- `table`: Turns on printing a prettified table to `stdout`
9+
10+
## Changes
11+
12+
- [[`b05911cbd9`](https://github.com/sondr3/git-anger-management/commit/b05911cbd9)] - Release v0.8.0-lib
13+
- [[`8e4745f94b`](https://github.com/sondr3/git-anger-management/commit/8e4745f94b)] - Properly feature gate features
14+
- [[`f2ece8a634`](https://github.com/sondr3/git-anger-management/commit/f2ece8a634)] - Add READMEs for the individual workspace members
15+
- [[`5e8cf95e7a`](https://github.com/sondr3/git-anger-management/commit/5e8cf95e7a)] - Update CI, README for workspace
16+
- [[`a194a4d4d6`](https://github.com/sondr3/git-anger-management/commit/a194a4d4d6)] - Fix CI error
17+
- [[`2c58f3939f`](https://github.com/sondr3/git-anger-management/commit/2c58f3939f)] - Split into workspace
18+
- [[`c44b1a63bc`](https://github.com/sondr3/git-anger-management/commit/c44b1a63bc)] - Update changelog, installation instructions in README
19+
120
## 0.7.0
221

322
> 2020-05-12

lib/README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,23 @@
1313

1414
This is the main library that drives the
1515
[`git-anger-management`](https://crates.io/crates/git-anger-management)
16-
CLI-application, this is not really useful for anything besides that.
16+
CLI-application, this is not really useful for anything besides that... but if
17+
you for some reason want to, feel free!
18+
19+
## Features:
20+
21+
**Note:** None of these features are enabled by default, so you have to opt into
22+
it like so:
23+
24+
```toml
25+
[dependencies]
26+
git-anger-library = { version = "0.8.0", features=["table", "json"] }
27+
```
28+
29+
- `json`: Enables Serde serialization of the processed data using with the
30+
`print_json()` method.
31+
- `table`: Enables pretty printing of the processed data using TabWriter with
32+
the function `print_table()`.
1733

1834
## License
1935

0 commit comments

Comments
 (0)