Skip to content

Commit 47f02be

Browse files
committed
v0.12.2
1 parent 2f0dcf1 commit 47f02be

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "simplelog"
3-
version = "0.12.1"
3+
version = "0.12.2"
44
edition = "2018"
55
authors = ["Drakulix <[email protected]>"]
66
description = "A simple and easy-to-use logging facility for Rust's log crate"
@@ -25,7 +25,7 @@ local-offset = ["time/local-offset"]
2525

2626
[dependencies]
2727
log = { version = "0.4.*", features = ["std"] }
28-
termcolor = { version = "1.1.*", optional = true }
28+
termcolor = { version = "^1.1", optional = true }
2929
paris = { version = "~1.5", optional = true }
3030
ansi_term = { version = "0.12", optional = true }
3131
time = { version = "0.3.7", features = ["formatting", "macros"] }

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ fn main() {
4242
### Results in
4343
```
4444
$ cargo run --example usage
45-
Compiling simplelog v0.12.1 (file:///home/drakulix/Projects/simplelog)
45+
Compiling simplelog v0.12.2 (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.12.1"
60+
simplelog = "^0.12.2"
6161
```
6262
to your `Cargo.toml`
6363

@@ -67,7 +67,7 @@ This crate can internally depend on a [paris](https://github.com/0x20F/paris) cr
6767
To use this feature you need to set a _paris_ feature, like this:
6868
```
6969
[dependencies]
70-
simplelog = { version = "^0.12.1", features = ["paris"] }
70+
simplelog = { version = "^0.12.2", features = ["paris"] }
7171
```
7272
in your `Cargo.toml`
7373

0 commit comments

Comments
 (0)