Skip to content

Commit f3603e6

Browse files
committed
v0.10.0
1 parent 5d077b6 commit f3603e6

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v0.10.0
2+
- Fix wrong argument naming (PR #70, credits to @scvalex)
3+
- *Breaking*: More color customization options (PR #72, credits to @mrkline)
4+
- Clarify docs on config levels
5+
16
## v0.9.0
27
- Add customizable level label colors (PR #69. credits to @JarrettBillingsley)
38
- Remove unneeded TermLogError

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# simplelog [![Build Status](https://travis-ci.org/Drakulix/simplelog.rs.svg?branch=master)](https://travis-ci.org/Drakulix/simplelog.rs) [![Coverage Status](https://coveralls.io/repos/github/Drakulix/simplelog.rs/badge.svg?branch=master)](https://coveralls.io/github/Drakulix/simplelog.rs?branch=master) [![Crates.io](https://img.shields.io/crates/v/simplelog.svg)](https://crates.io/crates/simplelog) [![Crates.io](https://img.shields.io/crates/l/simplelog.svg)](https://crates.io/crates/simplelog)
1+
# simplelog [![Build Status](https://github.com/drakulix/simplelog.rs/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/Drakulix/simplelog.rs/actions) [![Coverage Status](https://coveralls.io/repos/github/Drakulix/simplelog.rs/badge.svg?branch=master)](https://coveralls.io/github/Drakulix/simplelog.rs?branch=master) [![Crates.io](https://img.shields.io/crates/v/simplelog.svg)](https://crates.io/crates/simplelog) [![Crates.io](https://img.shields.io/crates/l/simplelog.svg)](https://crates.io/crates/simplelog)
22
## A simple and easy-to-use logging facility for Rust's [log](https://crates.io/crates/log) crate
33

44
`simplelog` does not aim to provide a rich set of features, nor to provide the
@@ -42,7 +42,7 @@ fn main() {
4242
### Results in
4343
```
4444
$ cargo run --example usage
45-
Compiling simplelog v0.7.6 (file:///home/drakulix/Projects/simplelog)
45+
Compiling simplelog v0.10.0 (file:///home/drakulix/Projects/simplelog)
4646
Running `target/debug/examples/usage`
4747
[ERROR] Bright red error
4848
```
@@ -57,7 +57,7 @@ and my_rust_binary.log
5757
Just add
5858
```
5959
[dependencies]
60-
simplelog = "^0.7.6"
60+
simplelog = "^0.10.0"
6161
```
6262
to your `Cargo.toml`
6363

0 commit comments

Comments
 (0)