diff --git a/CHANGELOG.md b/CHANGELOG.md index 38db717..5194a0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/abusch/rustdoc-viewer/compare/v0.1.0...v0.1.1) - 2026-08-26 + +### Added + +- show methods on their type's page instead of a page of their own +- theme the UI with opaline, default both themes to catppuccin mocha + ## [0.1.0] Initial release. `rdv`, a terminal browser for Rust `std` documentation: diff --git a/Cargo.lock b/Cargo.lock index 86059af..b1c6bb3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1232,7 +1232,7 @@ dependencies = [ [[package]] name = "rustdoc-viewer" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "arborium", diff --git a/Cargo.toml b/Cargo.toml index 7010cf8..8fceaf0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustdoc-viewer" -version = "0.1.0" +version = "0.1.1" edition = "2024" description = "A terminal-based viewer for Rust documentation." keywords = ["rustdoc", "terminal", "viewer"]