From 078a8bc68a1a13dbbb63cada4b7220021651b773 Mon Sep 17 00:00:00 2001 From: KodrAus Date: Mon, 11 Jan 2021 20:07:32 +1000 Subject: [PATCH] prepare for 0.4.13 release patch --- CHANGELOG.md | 7 ++++++- Cargo.toml | 3 ++- src/lib.rs | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fa8be0c5..c13472ab4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## [Unreleased] +## [0.4.13] - 2021-01-11 + +* This is the same as `0.4.11`, except with a `kv_unstable_std` feature added to aid migrating current dependents to `0.4.14` (which was originally going to be `0.4.13` until it was decided to create a patch from `0.4.11` to minimize disruption). + ## [0.4.11] - 2020-07-09 ### New @@ -170,7 +174,8 @@ version using log 0.4.x to avoid losing module and file information. Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.11...HEAD +[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.13...HEAD +[0.4.13]: https://github.com/rust-lang-nursery/log/compare/0.4.11...0.4.13 [0.4.11]: https://github.com/rust-lang-nursery/log/compare/0.4.10...0.4.11 [0.4.10]: https://github.com/rust-lang-nursery/log/compare/0.4.9...0.4.10 [0.4.9]: https://github.com/rust-lang-nursery/log/compare/0.4.8...0.4.9 diff --git a/Cargo.toml b/Cargo.toml index 4021fb041..427341449 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "log" -version = "0.4.11" # remember to update html_root_url +version = "0.4.13" # remember to update html_root_url authors = ["The Rust Project Developers"] license = "MIT OR Apache-2.0" readme = "README.md" @@ -46,6 +46,7 @@ std = [] # requires the latest stable # this will have a tighter MSRV before stabilization kv_unstable = [] +kv_unstable_std = ["kv_unstable", "std"] kv_unstable_sval = ["kv_unstable", "sval/fmt"] [dependencies] diff --git a/src/lib.rs b/src/lib.rs index 0dca5e3cc..7bbea5a1c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -266,7 +266,7 @@ #![doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "https://www.rust-lang.org/favicon.ico", - html_root_url = "https://docs.rs/log/0.4.11" + html_root_url = "https://docs.rs/log/0.4.13" )] #![warn(missing_docs)] #![deny(missing_debug_implementations)]