# 0.1.6 (October 29, 2019)
### Fixed
- `EnvFilter` defaulting to `ERROR` rather than `TRACE` for directives with no
targets (inconsistent with `env_logger`) (#401)
### Added
- `init` and `try_init` methods to `FmtSubscriber` and `fmt::Builder` to
simplify configuration in common cases (#385)
- New `ChronoUtc` and `ChronoLocal` `FormatTime` implementations for easily
configuring the timestamp locale when using the `chrono` crate (#385)
- RFC 3339 timestamp formatting option for `ChronoUtc` and `ChronoLocal` (#385)
# 0.1.5 (October 7, 2019)
### Fixed
- Spans not being closed properly when `FmtSubscriber::current_span` is used
(#371)
# 0.1.4 (September 26, 2019)
### Fixed
- Spans entered twice on the same thread sometimes being completely exited when
the more deeply-nested entry is exited (#361)
- Setting `with_ansi(false)` on `FmtSubscriber` not disabling ANSI color
formatting for timestamps (#354)
- Incorrect reference counting in `FmtSubscriber` that could cause spans to not
be closed when all references are dropped (#366)
# 0.1.3 (September 16, 2019)
### Fixed
- `Layered` subscribers not properly forwarding calls to `current_span`
(#350)
# 0.1.2 (September 12, 2019)
### Fixed
- `EnvFilter` ignoring directives with targets that are the same number of
characters (#333)
- `EnvFilter` failing to properly apply filter directives to events generated
from `log` records by`tracing-log` (#344)
### Changed
- Renamed `Filter` to `EnvFilter`, deprecated `Filter` (#339)
- Renamed "filter" feature flag to "env-filter", deprecated "filter" (#339)
- `FmtSubscriber` now defaults to enabling only the `INFO` level and above when
a max level filter or `EnvFilter` is not set (#336)
- Made `parking_lot` dependency an opt-in feature flag (#348)
### Added
- `EnvFilter::add_directive` to add new directives to filters after they are
constructed (#334)
- `fmt::Builder::with_max_level` to set a global level filter for a
`FmtSubscriber` without requiring the use of `EnvFilter` (#336)
- `Layer` implementation for `LevelFilter` (#336)
- `EnvFilter` now implements `fmt::Display` (#329)
### Removed
- Removed dependency on `crossbeam-util` (#348)
# 0.1.1 (September 4, 2019)
### Fixed
- Potential double panic in `CurrentSpan` (#325)
# 0.1.0 (September 3, 2019)
- Initial release