diff --git a/src/colors.rs b/src/colors.rs index a8195db..66e08ea 100644 --- a/src/colors.rs +++ b/src/colors.rs @@ -5,7 +5,7 @@ //! //! ```toml //! [dependencies] -//! fern = { version = "0.6", features = ["colored"] } +//! fern = { version = "0.7", features = ["colored"] } //! ``` //! //! --- @@ -53,7 +53,7 @@ //! [examples/pretty-colored.rs][ex]. //! //! [`ColoredLevelConfig`]: struct.ColoredLevelConfig.html -//! [ex]: https://github.com/daboross/fern/blob/fern-0.6.2/examples/pretty-colored.rs +//! [ex]: https://github.com/daboross/fern/blob/fern-0.7.0/examples/pretty-colored.rs use std::fmt; pub use colored::Color; diff --git a/src/lib.rs b/src/lib.rs index 197a085..f0cf292 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,7 +20,7 @@ //! ```toml //! [dependencies] //! log = "0.4" -//! fern = "0.6" +//! fern = "0.7" //! ``` //! //! # Example setup @@ -224,8 +224,8 @@ //! [`Stdout`]: std::io::Stdout //! [`Stderr`]: std::io::Stderr //! [`File`]: std::fs::File -//! [full example program]: https://github.com/daboross/fern/tree/fern-0.6.2/examples/cmd-program.rs -//! [syslog full example program]: https://github.com/daboross/fern/tree/fern-0.6.2/examples/syslog.rs +//! [full example program]: https://github.com/daboross/fern/tree/fern-0.7.0/examples/cmd-program.rs +//! [syslog full example program]: https://github.com/daboross/fern/tree/fern-0.7.0/examples/syslog.rs //! [`humantime::format_rfc3339_seconds`]: https://docs.rs/humantime/2/humantime/fn.format_rfc3339_seconds.html use std::{ convert::AsRef, diff --git a/src/meta.rs b/src/meta.rs index 8649cb8..a241402 100644 --- a/src/meta.rs +++ b/src/meta.rs @@ -39,7 +39,7 @@ following in your `Cargo.toml`: ```toml [dependencies] # ... -fern = { version = "0.6", features = ["meta-logging-in-format"] } +fern = { version = "0.7", features = ["meta-logging-in-format"] } ``` The second mitigation is one you can make inside a formatting closure. This means extra code diff --git a/src/syslog.rs b/src/syslog.rs index aaeef59..81350ae 100644 --- a/src/syslog.rs +++ b/src/syslog.rs @@ -5,7 +5,7 @@ Be sure to depend on `syslog` and the `syslog` feature in `Cargo.toml`: ```toml [dependencies] -fern = { version = "0.6", features = ["syslog-6"] }] +fern = { version = "0.7", features = ["syslog-6"] }] syslog = "6" ``` @@ -42,7 +42,7 @@ use the `syslog-3` feature and depend on `syslog = "3"` instead. ```toml [dependencies] -fern = { version = "0.6", features = ["syslog-3"] }] +fern = { version = "0.7", features = ["syslog-3"] }] syslog = "3" ```