diff --git a/CHANGELOG.md b/CHANGELOG.md index 052155d..213298d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## [0.5.2] - 2020-01-05 +### Changed +- Check for emptiness of `CARGO_HOME` and `RUSTUP_HOME` environment variables. +- Windows: Use `SHGetFolderPath` to replace `GetUserProfileDirectory` syscall. + * Remove `scopeguard` dependency. + ## [0.5.1] - 2019-10-12 ### Changed - Disable unnecessary features for `scopeguard`. Thanks @mati865. diff --git a/Cargo.toml b/Cargo.toml index 002c34f..cef5781 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "home" -version = "0.5.1" # also update `html_root_url` in `src/lib.rs` +version = "0.5.2" # 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 79a09b4..b46f9b2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,7 +25,7 @@ //! //! [discussion]: https://github.com/rust-lang/rust/pull/46799#issuecomment-361156935 -#![doc(html_root_url = "https://docs.rs/home/0.5.1")] +#![doc(html_root_url = "https://docs.rs/home/0.5.2")] #![deny(rust_2018_idioms)] #[cfg(windows)]