Release v0.2.0
This minor release adds support for syntax highlighting of code snippets and for configuration files.
This commit is contained in:
parent
3affe94234
commit
76845785ee
@ -5,7 +5,10 @@ SPDX-License-Identifier: MIT
|
|||||||
|
|
||||||
# Changelog for rusty-man
|
# Changelog for rusty-man
|
||||||
|
|
||||||
## Unreleased
|
## v0.2.0 (2020-08-11)
|
||||||
|
|
||||||
|
This minor release adds support for syntax highlighting of code snippets and
|
||||||
|
for configuration files.
|
||||||
|
|
||||||
- Add syntax highlighting:
|
- Add syntax highlighting:
|
||||||
- Add syntax highlighting using `syntect` for code snippets displayed with
|
- Add syntax highlighting using `syntect` for code snippets displayed with
|
||||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -799,7 +799,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rusty-man"
|
name = "rusty-man"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
|
"anyhow 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"assert_cmd 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"assert_cmd 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "rusty-man"
|
name = "rusty-man"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
authors = ["Robin Krahl <robin.krahl@ireas.org>"]
|
authors = ["Robin Krahl <robin.krahl@ireas.org>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Command-line viewer for rustdoc documentation"
|
description = "Command-line viewer for rustdoc documentation"
|
||||||
|
16
INSTALL.md
16
INSTALL.md
@ -26,7 +26,7 @@ To compile rusty-man, you need Rust 1.40 or later.
|
|||||||
```
|
```
|
||||||
2. Optional: Checkout the latest release:
|
2. Optional: Checkout the latest release:
|
||||||
```
|
```
|
||||||
$ git checkout v0.1.3
|
$ git checkout v0.2.0
|
||||||
```
|
```
|
||||||
3. Optional: Verify the signature of the latest commit:
|
3. Optional: Verify the signature of the latest commit:
|
||||||
```
|
```
|
||||||
@ -47,20 +47,20 @@ To compile rusty-man, you need Rust 1.40 or later.
|
|||||||
1. Download the tarball for the latest rusty-man release (see the [release
|
1. Download the tarball for the latest rusty-man release (see the [release
|
||||||
list][]) and optionally its signature:
|
list][]) and optionally its signature:
|
||||||
```
|
```
|
||||||
$ curl "https://git.sr.ht/~ireas/rusty-man/archive/v0.1.3.tar.gz" \
|
$ curl "https://git.sr.ht/~ireas/rusty-man/archive/v0.2.0.tar.gz" \
|
||||||
--output rusty-man-v0.1.3.tar.gz
|
--output rusty-man-v0.2.0.tar.gz
|
||||||
```
|
```
|
||||||
2. Optional: Download and verify the signature of the tarball:
|
2. Optional: Download and verify the signature of the tarball:
|
||||||
```
|
```
|
||||||
$ curl "https://git.sr.ht/~ireas/rusty-man/refs/v0.1.3/v0.1.3.tar.gz.asc" \
|
$ curl "https://git.sr.ht/~ireas/rusty-man/refs/v0.2.0/v0.2.0.tar.gz.asc" \
|
||||||
--output rusty-man-v0.1.3.tar.gz.asc
|
--output rusty-man-v0.2.0.tar.gz.asc
|
||||||
$ curl -s "https://pgp.ireas.org/0x6D533958F070C57C.txt" | gpg --import
|
$ curl -s "https://pgp.ireas.org/0x6D533958F070C57C.txt" | gpg --import
|
||||||
$ gpg --verify rusty-man-v0.1.3.tar.gz.asc
|
$ gpg --verify rusty-man-v0.2.0.tar.gz.asc
|
||||||
```
|
```
|
||||||
3. Extract the tarball:
|
3. Extract the tarball:
|
||||||
```
|
```
|
||||||
$ tar -xf rusty-man-v0.1.3.tar.gz
|
$ tar -xf rusty-man-v0.2.0.tar.gz
|
||||||
$ cd rusty-man-v0.1.3
|
$ cd rusty-man-v0.2.0
|
||||||
```
|
```
|
||||||
4. Compile rusty-man:
|
4. Compile rusty-man:
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user