diff --git a/Cargo.lock b/Cargo.lock index 925f021..8be6726 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -545,7 +545,7 @@ dependencies = [ [[package]] name = "markdown-reader" -version = "0.1.15" +version = "0.1.16" dependencies = [ "clap", "color-eyre", @@ -1160,7 +1160,7 @@ dependencies = [ [[package]] name = "tui-markdown" -version = "0.2.9" +version = "0.2.10" dependencies = [ "indoc", "itertools", diff --git a/markdown-reader/CHANGELOG.md b/markdown-reader/CHANGELOG.md index b1298d0..4b77ef2 100644 --- a/markdown-reader/CHANGELOG.md +++ b/markdown-reader/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. ## [unreleased] +## [0.1.16](https://github.com/joshka/tui-markdown/compare/markdown-reader-v0.1.15...markdown-reader-v0.1.16) - 2024-09-20 + +### Other + +- add tests, implement more markdown features, don't panic for unimplemented features ([#45](https://github.com/joshka/tui-markdown/pull/45)) + ## [0.1.15](https://github.com/joshka/tui-markdown/compare/markdown-reader-v0.1.14...markdown-reader-v0.1.15) - 2024-09-20 ### Other diff --git a/markdown-reader/Cargo.toml b/markdown-reader/Cargo.toml index 4c521ca..d7b0a02 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.15" +version = "0.1.16" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/joshka/tui-markdown" @@ -24,7 +24,7 @@ tracing = "0.1.40" tracing-error = "0.2.0" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } time = { version = "0.3.36", features = ["formatting", "macros"] } -tui-markdown = { version = "0.2.9", path = "../tui-markdown" } +tui-markdown = { version = "0.2.10", path = "../tui-markdown" } [[bin]] name = "mdr" diff --git a/tui-markdown/CHANGELOG.md b/tui-markdown/CHANGELOG.md index d109bce..92043e4 100644 --- a/tui-markdown/CHANGELOG.md +++ b/tui-markdown/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. ## [unreleased] +## [0.2.10](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.9...tui-markdown-v0.2.10) - 2024-09-20 + +### Other + +- add tests, implement more markdown features, don't panic for unimplemented features ([#45](https://github.com/joshka/tui-markdown/pull/45)) + ## [0.2.9](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.8...tui-markdown-v0.2.9) - 2024-09-20 ### Other diff --git a/tui-markdown/Cargo.toml b/tui-markdown/Cargo.toml index eeead79..15612c3 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.2.9" +version = "0.2.10" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/joshka/tui-markdown"