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:
parent
45a1a3d1f5
commit
4d7c7d4eab
@ -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
2
Cargo.lock
generated
@ -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)",
|
||||
|
@ -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"
|
||||
|
@ -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:
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user