diff --git a/Cargo.lock b/Cargo.lock index ef28ec3..8fdeed7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -385,7 +385,7 @@ dependencies = [ [[package]] name = "markdown-reader" -version = "0.1.1" +version = "0.1.2" dependencies = [ "clap", "color-eyre", @@ -898,7 +898,7 @@ dependencies = [ [[package]] name = "tui-markdown" -version = "0.1.1" +version = "0.2.0" dependencies = [ "itertools", "pulldown-cmark", diff --git a/markdown-reader/CHANGELOG.md b/markdown-reader/CHANGELOG.md index 86030fb..e325e64 100644 --- a/markdown-reader/CHANGELOG.md +++ b/markdown-reader/CHANGELOG.md @@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file. ## [unreleased] +## [0.1.2](https://github.com/joshka/tui-markdown/compare/markdown-reader-v0.1.1...markdown-reader-v0.1.2) - 2024-02-27 + +### Added +- add filename and pageUp/Down + +### Fixed +- urls in cargo.toml +- add pages down and up to scroll +- make scrollbar respect end of file + +### Other +- make logging scrollable + ## [0.1.1](https://github.com/joshka/tui-markdown/compare/markdown-reader-v0.1.0...markdown-reader-v0.1.1) - 2024-02-27 ### Added diff --git a/markdown-reader/Cargo.toml b/markdown-reader/Cargo.toml index 9bf71ec..a38b877 100644 --- a/markdown-reader/Cargo.toml +++ b/markdown-reader/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "markdown-reader" description = "A simple markdown reader that uses ratatui to render markdown files." -version = "0.1.1" +version = "0.1.2" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/joshka/tui-markdown" @@ -22,7 +22,7 @@ tracing = "0.1.40" tracing-error = "0.2.0" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } time = { version = "0.3.34", features = ["formatting", "macros"] } -tui-markdown = { version = "0.1.1", path = "../tui-markdown" } +tui-markdown = { version = "0.2.0", path = "../tui-markdown" } [[bin]] name = "mdr" diff --git a/tui-markdown/CHANGELOG.md b/tui-markdown/CHANGELOG.md index 506379f..bbd5b62 100644 --- a/tui-markdown/CHANGELOG.md +++ b/tui-markdown/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. ## [unreleased] +## [0.2.0](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.1.1...tui-markdown-v0.2.0) - 2024-02-27 + +### Added +- add filename and pageUp/Down +- support code blocks in tui-markdown + +### Fixed +- Update urls in Cargo.toml ([#4](https://github.com/joshka/tui-markdown/pull/4)) + +### Other +- add note about newlines + ## [0.1.1](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.1.0...tui-markdown-v0.1.1) - 2024-02-27 ### Other diff --git a/tui-markdown/Cargo.toml b/tui-markdown/Cargo.toml index 4a90fa8..0cab71f 100644 --- a/tui-markdown/Cargo.toml +++ b/tui-markdown/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tui-markdown" description = "A simple library for converting markdown to a Rataui Text value" -version = "0.1.1" +version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/joshka/tui-markdown"