Skip to content

Commit

Permalink
Release version 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
daboross committed Jan 3, 2018
1 parent 7adced8 commit 5072a7f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
0.5.2 (2018-01-02)
==================

- Re-add compatibility for rust versions 1.16.0+, and add CI testing
with rustc 1.16.0 to ensure this is kept in the future.
- Add some more general documentation updates and clarity increases.
- Add a CHANGELOG.md which mirrors git tag releases.
- Update documentation links to point to docs.rs rather than custom
hosted documentation.
- Fix ColoredLevelConfig::default being an inherent method rather than
an implementation of the Default trait.
- Add direct support for the syslog crate under the "syslog-3"
feature flag.
- Add a module worth of documentation for using fern with syslog.

0.5.1 (2017-12-26)
==================

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name = "fern"
# Remember to update html_root_url in src/lib.rs with each version.
version = "0.5.1"
version = "0.5.2"
authors = ["David Ross <[email protected]>"]
description = "Simple, efficient logging"

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![deny(missing_docs)]
#![doc(html_root_url = "https://docs.rs/fern/0.5.1")]
#![doc(html_root_url = "https://docs.rs/fern/0.5.2")]
//! Efficient, configurable logging in Rust.
//!
//! # Depending on fern
Expand Down

0 comments on commit 5072a7f

Please sign in to comment.