Release v0.1.2

This patch release adds basic logging output and a new `-e`/`--examples`
option to extract only the examples from the documentation.  It also
fixes a bug when displaying the documentation for a function.
This commit is contained in:
Robin Krahl 2020-07-25 13:27:56 +02:00
parent 45a1a3d1f5
commit 4d7c7d4eab
No known key found for this signature in database
GPG Key ID: 8E9B0870524F69D8
4 changed files with 8 additions and 4 deletions

View File

@ -5,7 +5,11 @@ SPDX-License-Identifier: MIT
# Changelog for rusty-man
## Unreleased
## v0.1.2 (2020-07-25)
This patch release adds basic logging output and a new `-e`/`--examples` option
to extract only the examples from the documentation. It also fixes a bug when
displaying the documentation for a function.
- Add basic logging using `env_logger` that can be enabled by setting the
environment variable `RUST_LOG=info`.

2
Cargo.lock generated
View File

@ -563,7 +563,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "rusty-man"
version = "0.1.1"
version = "0.1.2"
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)",

View File

@ -3,7 +3,7 @@
[package]
name = "rusty-man"
version = "0.1.1"
version = "0.1.2"
authors = ["Robin Krahl <robin.krahl@ireas.org>"]
edition = "2018"
description = "Command-line viewer for rustdoc documentation"

View File

@ -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.1
$ git checkout v0.1.2
```
3. Optional: Verify the signature of the latest commit:
```