|
64 | 64 |
|
65 | 65 | ## [0.4.18] - 2023-05-28 |
66 | 66 |
|
67 | | -* fix markdown links (again) by @hellow554 in https://github.com/rust-lang/log/pull/513 |
| 67 | +* fix Markdown links (again) by @hellow554 in https://github.com/rust-lang/log/pull/513 |
68 | 68 | * add cargo doc to workflow by @hellow554 in https://github.com/rust-lang/log/pull/515 |
69 | 69 | * Apply Clippy lints by @hellow554 in https://github.com/rust-lang/log/pull/516 |
70 | 70 | * Replace ad-hoc eq_ignore_ascii_case with slice::eq_ignore_ascii_case by @glandium in https://github.com/rust-lang/log/pull/519 |
|
99 | 99 | * Improvements to test coverage. |
100 | 100 | * Improvements to documentation. |
101 | 101 | * Add key-value support to the `log!` macros. |
102 | | -* Tighten `kv_unstable` internal dependencies so they don't bump past their current alpha. |
| 102 | +* Tighten `kv_unstable` internal dependencies, so they don't bump past their current alpha. |
103 | 103 | * Add a simple visit API to `kv_unstable`. |
104 | 104 | * Support `NonZero*` integers as values in structured logging |
105 | 105 | * Support static strings as keys in structured logging |
@@ -149,7 +149,7 @@ as either a map of `{key: value, ..}` or as a list of `[(key, value), ..]`. |
149 | 149 |
|
150 | 150 | ### Fixed |
151 | 151 |
|
152 | | -* Fixed the `log!` macros so they work in expression context (this regressed in `0.4.9`, which has been yanked). |
| 152 | +* Fixed the `log!` macros, so they work in expression context (this regressed in `0.4.9`, which has been yanked). |
153 | 153 |
|
154 | 154 | ## [0.4.9] - 2019-12-12 (yanked) |
155 | 155 |
|
@@ -260,7 +260,7 @@ version using log 0.4.x to avoid losing module and file information. |
260 | 260 | * The `logger` free function returns a reference to the logger implementation. This, along with the |
261 | 261 | ability to construct `Record`s, makes it possible to bridge from another logging framework to |
262 | 262 | this one without digging into the private internals of the crate. The standard `error!` `warn!`, |
263 | | - etc, macros now exclusively use the public API of the crate rather than "secret" internal APIs. |
| 263 | + etc., macros now exclusively use the public API of the crate rather than "secret" internal APIs. |
264 | 264 | * `Log::flush` has been added to allow crates to tell the logging implementation to ensure that all |
265 | 265 | "in flight" log events have been persisted. This can be used, for example, just before an |
266 | 266 | application exits to ensure that asynchronous log sinks finish their work. |
|
0 commit comments