Skip to content

Commit

Permalink
Release version 0.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
daboross committed Oct 23, 2019
1 parent 3f1e883 commit 96c1017
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@ Unreleased
==========


0.5.9 (2019-10-23)
==================

- Add a rotating date-based file logger (thanks [@tanujitghosh]!)
- Add a file logger which supports reopening files on SIGHUP via the
[reopen] crate (thanks [@itkovian]!)
- Ensure Windows console colors are enabled whenever a ColoredLevelConfig
is created on Windows (thanks [@Songtronix]!)
- Change minimum rust version from 1.16 to 1.32, as it had already
been effectively changed by a patch update in one of our
dependencies (cfg-if)
- Update crate to Rust 2018 edition (thanks [@tymcauley]!)

0.5.8 (2019-03-25)
==================

Expand Down Expand Up @@ -373,6 +386,8 @@ was added.

First release, version 0.1.0.


[reopen]: https://github.com/vorner/reopen
[@gareins]: https://github.com/gareins
[@gingerDevilish]: https://github.com/gingerDevilish
[@nihiluis]: https://github.com/nihiluis
Expand All @@ -381,3 +396,7 @@ First release, version 0.1.0.
[@digitalatigid]: https://github.com/digitalatigid
[@ExpHP]: https://github.com/ExpHP
[@17dec]: https://github.com/17dec
[@tanujitghosh]: https://github.com/tanujitghosh
[@itkovian]: https://github.com/itkovian
[@tymcauley]: https://github.com/tymcauley
[@Songtronix]: https://github.com/Songtronix
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fern"
# Remember to update html_root_url in src/lib.rs with each version.
version = "0.5.8"
version = "0.5.9"
authors = ["David Ross <daboross@daboross.net>"]
description = "Simple, efficient logging"
edition = "2018"
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.8")]
#![doc(html_root_url = "https://docs.rs/fern/0.5.9")]
//! Efficient, configurable logging in Rust.
//!
//! # Depending on fern
Expand Down

0 comments on commit 96c1017

Please sign in to comment.