Skip to content

Commit 746e6e2

Browse files
authored
Merge pull request #429 from KodrAus/cargo/0.4.12
Prepare for 0.4.12 release
2 parents 0e78c11 + 4c66a1c commit 746e6e2

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
## [Unreleased]
44

5+
## [0.4.12] - 2020-12-24
6+
7+
### New
8+
9+
* Support platforms without atomics by racing instead of failing to compile
10+
* Implement `Log` for `Box<T: Log>`
11+
* Update `cfg-if` to `1.0`
12+
* Internal reworks of the structured logging API. Removed the `Fill` API
13+
and added `source::as_map` and `source::as_list` to easily serialize a `Source`
14+
as either a map of `{key: value, ..}` or as a list of `[(key, value), ..]`.
15+
16+
### Fixed
17+
18+
* Fixed deserialization of `LevelFilter` to use their `u64` index variants
19+
520
## [0.4.11] - 2020-07-09
621

722
### New
@@ -170,7 +185,8 @@ version using log 0.4.x to avoid losing module and file information.
170185

171186
Look at the [release tags] for information about older releases.
172187

173-
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.11...HEAD
188+
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.12...HEAD
189+
[0.4.12]: https://github.com/rust-lang-nursery/log/compare/0.4.11...0.4.12
174190
[0.4.11]: https://github.com/rust-lang-nursery/log/compare/0.4.10...0.4.11
175191
[0.4.10]: https://github.com/rust-lang-nursery/log/compare/0.4.9...0.4.10
176192
[0.4.9]: https://github.com/rust-lang-nursery/log/compare/0.4.8...0.4.9

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "log"
4-
version = "0.4.11" # remember to update html_root_url
4+
version = "0.4.12" # remember to update html_root_url
55
authors = ["The Rust Project Developers"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@
266266
#![doc(
267267
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
268268
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
269-
html_root_url = "https://docs.rs/log/0.4.11"
269+
html_root_url = "https://docs.rs/log/0.4.12"
270270
)]
271271
#![warn(missing_docs)]
272272
#![deny(missing_debug_implementations)]

0 commit comments

Comments
 (0)