diff --git a/.gitignore b/.gitignore index 4470988..2c96eb1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ target/ -Cargo.lock \ No newline at end of file +Cargo.lock diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..287644e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,21 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + + + +## [0.5.0] - 2019-08-21 +### Added +- Add `home_dir` implementation for Windows UWP platforms. + +### Fixed +- Fix `rustup_home` implementation when `RUSTUP_HOME` is absolute directory. +- Fix `cargo_home` implementation when `CARGO_HOME` is absolute directory. + +### Removed +- Remove support `multirust` folder used in old version of `rustup`. + +[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.5.0...HEAD +[0.5.0]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.4.2...v0.5.0 diff --git a/Cargo.toml b/Cargo.toml index 9c4411e..e4e589b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "home" -version = "0.4.2" +version = "0.5.0" # 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 3fa5f13..4476541 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,6 +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")] #![deny(rust_2018_idioms)] mod windows;