diff --git a/CHANGELOG.md b/CHANGELOG.md index 78aa7d3..052155d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## [0.5.1] - 2019-10-12 +### Changed +- Disable unnecessary features for `scopeguard`. Thanks @mati865. + ## [0.5.0] - 2019-08-21 ### Added - Add `home_dir` implementation for Windows UWP platforms. @@ -18,4 +22,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Remove support for `multirust` folder used in old version of `rustup`. [Unreleased]: https://github.com/brson/home/compare/v0.5.0...HEAD +[0.5.1]: https://github.com/brson/home/compare/v0.5.0...v0.5.1 [0.5.0]: https://github.com/brson/home/compare/0.4.2...v0.5.0 diff --git a/Cargo.toml b/Cargo.toml index fa4f4d9..c256105 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "home" -version = "0.5.0" # also update `html_root_url` in `src/lib.rs` +version = "0.5.1" # also update `html_root_url` in `src/lib.rs` authors = [ "Brian Anderson " ] documentation = "https://docs.rs/home" edition = "2018" diff --git a/src/lib.rs b/src/lib.rs index cd4c902..78f88f1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,7 +25,7 @@ //! //! [rust-lang/rust#43321]: https://github.com/rust-lang/rust/issues/43321 -#![doc(html_root_url = "https://docs.rs/home/0.5.0")] +#![doc(html_root_url = "https://docs.rs/home/0.5.1")] #![deny(rust_2018_idioms)] mod windows;