Skip to content

Commit

Permalink
v0.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Drakulix committed Mar 4, 2024
1 parent 2f0dcf1 commit 47f02be
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "simplelog"
version = "0.12.1"
version = "0.12.2"
edition = "2018"
authors = ["Drakulix <github@drakulix.de>"]
description = "A simple and easy-to-use logging facility for Rust's log crate"
Expand All @@ -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"] }
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -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
```
Expand All @@ -57,7 +57,7 @@ and my_rust_binary.log
Just add
```
[dependencies]
simplelog = "^0.12.1"
simplelog = "^0.12.2"
```
to your `Cargo.toml`

Expand All @@ -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`

Expand Down

0 comments on commit 47f02be

Please sign in to comment.