Skip to content

Commit

Permalink
Update version numbers in source to 0.7.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
daboross committed Oct 21, 2024
1 parent cfc8e8f commit 894a70c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/colors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
//!
//! ```toml
//! [dependencies]
//! fern = { version = "0.6", features = ["colored"] }
//! fern = { version = "0.7", features = ["colored"] }
//! ```
//!
//! ---
Expand Down Expand Up @@ -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;
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//! ```toml
//! [dependencies]
//! log = "0.4"
//! fern = "0.6"
//! fern = "0.7"
//! ```
//!
//! # Example setup
Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/meta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/syslog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```
Expand Down Expand Up @@ -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"
```
Expand Down

0 comments on commit 894a70c

Please sign in to comment.