Skip to content

Commit

Permalink
Merge pull request #441 from KodrAus/0.4.11-patch
Browse files Browse the repository at this point in the history
Prepare for 0.4.13 release patch
  • Loading branch information
KodrAus committed Jan 11, 2021
2 parents aa4c037 + 078a8bc commit f0a7857
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion 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"
Expand Down Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -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)]
Expand Down

0 comments on commit f0a7857

Please sign in to comment.