diff --git a/Cargo.toml b/Cargo.toml index e2e533c3..aa069a6c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simplelog" -version = "0.12.1" +version = "0.12.2" edition = "2018" authors = ["Drakulix "] description = "A simple and easy-to-use logging facility for Rust's log crate" @@ -25,7 +25,7 @@ local-offset = ["time/local-offset"] [dependencies] log = { version = "0.4.*", features = ["std"] } -termcolor = { version = "1.1.*", optional = true } +termcolor = { version = "^1.1", optional = true } paris = { version = "~1.5", optional = true } ansi_term = { version = "0.12", optional = true } time = { version = "0.3.7", features = ["formatting", "macros"] } diff --git a/README.md b/README.md index c94a61a1..c1db7ad1 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ fn main() { ### Results in ``` $ cargo run --example usage - Compiling simplelog v0.12.1 (file:///home/drakulix/Projects/simplelog) + Compiling simplelog v0.12.2 (file:///home/drakulix/Projects/simplelog) Running `target/debug/examples/usage` [ERROR] Bright red error ``` @@ -57,7 +57,7 @@ and my_rust_binary.log Just add ``` [dependencies] -simplelog = "^0.12.1" +simplelog = "^0.12.2" ``` to your `Cargo.toml` @@ -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.12.1", features = ["paris"] } +simplelog = { version = "^0.12.2", features = ["paris"] } ``` in your `Cargo.toml`