diff --git a/CHANGELOG.md b/CHANGELOG.md index ce69b2f..c8a870a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,11 @@ SPDX-License-Identifier: MIT # Changelog for rusty-man -## Unreleased +## v0.1.3 (2020-07-28) + +This patch release adds support for documentation generated with Rust 1.45.0 +and fixes some minor bugs in the documentation parser. It also adds the +documentation downloaded using rustup to the default sources. - Use `rustc --print sysroot` to determine the Rust installation directory instead of always using `/usr`. diff --git a/Cargo.lock b/Cargo.lock index 87e25c6..7eecefe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -563,7 +563,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "rusty-man" -version = "0.1.2" +version = "0.1.3" dependencies = [ "anyhow 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)", "crossterm 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 20086e4..1ef898d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "rusty-man" -version = "0.1.2" +version = "0.1.3" authors = ["Robin Krahl "] edition = "2018" description = "Command-line viewer for rustdoc documentation" diff --git a/INSTALL.md b/INSTALL.md index 66887f1..0aaf705 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -17,7 +17,7 @@ To compile rusty-man, you need Rust 1.40 or later. ``` 2. Optional: Checkout the latest release: ``` - $ git checkout v0.1.2 + $ git checkout v0.1.3 ``` 3. Optional: Verify the signature of the latest commit: ```