• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Change Log
2All notable changes to this project will be documented in this file.
3
4The format is based on [Keep a Changelog](http://keepachangelog.com/)
5and this project adheres to [Semantic Versioning](http://semver.org/).
6
7<!-- next-header -->
8## [Unreleased] - ReleaseDate
9
10## [0.10.2] - 2024-01-18
11
12### Performance
13
14- Avoid extra UTF-8 validation performed in some cases
15
16### Fixes
17
18- Ensure custom pipes/stdout get flushed
19- Don't panic on broken pipes when `color` is disabled
20
21## [0.10.1] - 2023-11-10
22
23### Performance
24
25- Avoid hashing directives and accessing RNG on startup
26
27### Documentation
28
29- Tweak `RUST_LOG` documentation
30
31## [0.10.0] - 2022-11-24
32
33MSRV changed to 1.60 to hide optional dependencies
34
35### Fixes
36
37- Resolved soundness issue by switching from `atty` to `is-terminal`
38
39### Breaking Changes
40
41To open room for changing dependencies:
42- Renamed `termcolor` feature to `color`
43- Renamed `atty` feature to `auto-color`
44
45## [0.9.3] - 2022-11-07
46
47- Fix a regression from v0.9.2 where env_logger would fail to compile with the termcolor feature turned off.
48
49## [0.9.2] - 2022-11-07
50
51- Fix and un-deprecate Target::Pipe, which was basically not working at all before and deprecated in 0.9.1.
52
53## [0.9.0] -- 2022-07-14
54
55### Breaking Changes
56
57- Default message format now prints the target instead of the module
58
59### Improvements
60
61- Added a method to print the module instead of the target
62
63<!-- next-url -->
64[Unreleased]: https://github.com/rust-cli/env_logger/compare/v0.10.2...HEAD
65[0.10.2]: https://github.com/rust-cli/env_logger/compare/v0.10.1...v0.10.2
66[0.10.1]: https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1
67[0.10.0]: https://github.com/rust-cli/env_logger/compare/v0.9.3...v0.10.0
68[0.9.3]: https://github.com/rust-cli/env_logger/compare/v0.9.2...v0.9.3
69[0.9.2]: https://github.com/rust-cli/env_logger/compare/v0.9.0...v0.9.2
70[0.9.0]: https://github.com/rust-cli/env_logger/compare/v0.8.4...v0.9.0
71