2020-07-24 12:16:34 +00:00
|
|
|
<!---
|
|
|
|
SPDX-FileCopyrightText: 2020 Robin Krahl <robin.krahl@ireas.org>
|
|
|
|
SPDX-License-Identifier: MIT
|
|
|
|
-->
|
|
|
|
|
2020-07-25 11:24:11 +00:00
|
|
|
# Changelog for rusty-man
|
|
|
|
|
2020-07-25 17:06:27 +00:00
|
|
|
## Unreleased
|
|
|
|
|
|
|
|
- Use `rustc --print sysroot` to determine the Rust installation directory
|
|
|
|
instead of always using `/usr`.
|
2020-07-26 08:42:17 +00:00
|
|
|
- Improve the documentation parser:
|
|
|
|
- Fix the definition of methods to only contain the actual definition.
|
2020-07-26 09:04:13 +00:00
|
|
|
- Remove spurious members in module documentation.
|
2020-07-26 09:51:54 +00:00
|
|
|
- Show the definition for constants and typedefs.
|
2020-07-26 10:10:21 +00:00
|
|
|
- Fix group and ID for typdef items.
|
2020-07-25 17:06:27 +00:00
|
|
|
|
2020-07-25 11:27:56 +00:00
|
|
|
## 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.
|
2020-07-25 09:44:57 +00:00
|
|
|
|
|
|
|
- Add basic logging using `env_logger` that can be enabled by setting the
|
|
|
|
environment variable `RUST_LOG=info`.
|
|
|
|
- Add `env_logger` dependency in version 0.7.1.
|
|
|
|
- Add `log` dependency in version 0.4.11.
|
2020-07-25 10:18:32 +00:00
|
|
|
- Show the definition for global functions.
|
2020-07-25 10:58:52 +00:00
|
|
|
- Add the `-e`/`--examples` option to only show the examples instead of opening
|
|
|
|
the full documentation for an item.
|
2020-07-25 09:44:57 +00:00
|
|
|
|
2020-07-25 11:24:11 +00:00
|
|
|
## v0.1.1 (2020-07-24)
|
2020-07-24 12:24:57 +00:00
|
|
|
|
|
|
|
This patch release fixes some minor issues with the documentation displayed on
|
|
|
|
crates.io.
|
|
|
|
|
2020-07-25 11:24:11 +00:00
|
|
|
## v0.1.0 (2020-07-24)
|
2020-07-24 12:16:34 +00:00
|
|
|
|
|
|
|
Initial release with support for directory sources and including viewers for
|
|
|
|
plain and rich text.
|