diff --git a/CHANGELOG.md b/CHANGELOG.md index a94ea55c..3ce7fc74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## Unreleased - The `new` method of loggers are now `#[must_use]` to prevent confusion when `new` is used called instead of `init` + - Adjusted dependency to support termcolor crate version 1.2 (PR #131, credits to @danielparks) ## v0.12.0 - Replaces the semingly unmaintained chrono library with the time crate. - Addresses through this update diff --git a/Cargo.toml b/Cargo.toml index 6ebc6322..47a7b25d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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.12", optional = true } ansi_term = { version = "0.12", optional = true } time = { version = "0.3.7", features = ["formatting", "macros"] }