From 97447ecb7199994f28974b64adbca60a23087e9a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Apr 2024 08:51:25 +0000 Subject: [PATCH] chore: release Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- markdown-reader/CHANGELOG.md | 9 +++++++++ markdown-reader/Cargo.toml | 4 ++-- tui-markdown/CHANGELOG.md | 7 +++++++ tui-markdown/Cargo.toml | 2 +- 5 files changed, 21 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cf09802..62be466 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -391,7 +391,7 @@ dependencies = [ [[package]] name = "markdown-reader" -version = "0.1.6" +version = "0.1.7" dependencies = [ "clap", "color-eyre", @@ -893,7 +893,7 @@ dependencies = [ [[package]] name = "tui-markdown" -version = "0.2.2" +version = "0.2.3" dependencies = [ "itertools", "pulldown-cmark", diff --git a/markdown-reader/CHANGELOG.md b/markdown-reader/CHANGELOG.md index c8ea49a..d2a762d 100644 --- a/markdown-reader/CHANGELOG.md +++ b/markdown-reader/CHANGELOG.md @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. ## [unreleased] +## [0.1.7](https://github.com/joshka/tui-markdown/compare/markdown-reader-v0.1.6...markdown-reader-v0.1.7) - 2024-04-24 + +### Other +- *(deps)* bump ratatui from 0.26.1 to 0.26.2 ([#20](https://github.com/joshka/tui-markdown/pull/20)) +- *(deps)* bump time from 0.3.34 to 0.3.36 ([#21](https://github.com/joshka/tui-markdown/pull/21)) +- *(deps)* bump clap from 4.5.3 to 4.5.4 ([#17](https://github.com/joshka/tui-markdown/pull/17)) +- *(deps)* bump color-eyre from 0.6.2 to 0.6.3 ([#14](https://github.com/joshka/tui-markdown/pull/14)) +- *(deps)* bump clap from 4.5.2 to 4.5.3 ([#15](https://github.com/joshka/tui-markdown/pull/15)) + ## [0.1.6](https://github.com/joshka/tui-markdown/compare/markdown-reader-v0.1.5...markdown-reader-v0.1.6) - 2024-03-12 ### Other diff --git a/markdown-reader/Cargo.toml b/markdown-reader/Cargo.toml index 25bb823..5ff43f5 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.6" +version = "0.1.7" 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.36", features = ["formatting", "macros"] } -tui-markdown = { version = "0.2.2", path = "../tui-markdown" } +tui-markdown = { version = "0.2.3", path = "../tui-markdown" } [[bin]] name = "mdr" diff --git a/tui-markdown/CHANGELOG.md b/tui-markdown/CHANGELOG.md index 8355c68..e094186 100644 --- a/tui-markdown/CHANGELOG.md +++ b/tui-markdown/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. ## [unreleased] +## [0.2.3](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.2...tui-markdown-v0.2.3) - 2024-04-24 + +### Other +- *(deps)* bump pulldown-cmark ([#23](https://github.com/joshka/tui-markdown/pull/23)) +- *(deps)* bump ratatui from 0.26.1 to 0.26.2 ([#20](https://github.com/joshka/tui-markdown/pull/20)) +- *(deps)* bump pulldown-cmark from 0.10.0 to 0.10.2 ([#19](https://github.com/joshka/tui-markdown/pull/19)) + ## [0.2.2](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.1...tui-markdown-v0.2.2) - 2024-02-29 ### Other diff --git a/tui-markdown/Cargo.toml b/tui-markdown/Cargo.toml index 1285e60..ecdec9e 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.2" +version = "0.2.3" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/joshka/tui-markdown"