Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to v0.11.0 and adjust README #86

Merged
merged 2 commits into from Nov 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,15 @@
## v0.11.0
- Add colored log levels using `ansi_term` (PR #88, credits to @manio)
- Add target padding (PR #85, credits to @bytebeamio)
- Add optional color and style support using `paris` crate (PR #84, credits to @manio)

## v0.10.2
- Fix flushing with `BufferedStandardStreams` (PR #82, credits to @mrkline)

## v0.10.1
- Fix TermLogger performance using `termcolor::BufferedStandardStream` (PR #80, credits to @mrkline)
- Add write thread name support for `termlog` (PR #76, credits to @zeroflaw)

## v0.10.0
- Fix wrong argument naming (PR #70, credits to @scvalex)
- *Breaking*: More color customization options (PR #72, credits to @mrkline)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "simplelog"
version = "0.10.2"
version = "0.11.0"
edition = "2018"
authors = ["Drakulix <github@drakulix.de>"]
description = "A simple and easy-to-use logging facility for Rust's log crate"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -67,7 +67,7 @@ This crate can internally depend on a [paris](https://github.com/0x20F/paris) cr
To use this feature you need to set a _paris_ feature, like this:
```
[dependencies]
simplelog = { version = "^0.10.0", features = ["paris"] }
simplelog = { version = "^0.11.0", features = ["paris"] }
```
in your `Cargo.toml`

Expand Down