From 44028e228a91c252d02ef37db4407a128fe6f40e Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Tue, 28 Jul 2020 14:59:12 +0200 Subject: [PATCH] Release v0.1.3 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. --- CHANGELOG.md | 6 +++++- Cargo.lock | 2 +- Cargo.toml | 2 +- INSTALL.md | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) 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: ```