From b12e846c99c746ac5b149da0714d8a765ddc96f9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 7 Jun 2024 22:25:15 -0700 Subject: [PATCH] chore: release (#26) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- markdown-reader/CHANGELOG.md | 5 +++++ markdown-reader/Cargo.toml | 4 ++-- tui-markdown/CHANGELOG.md | 5 +++++ tui-markdown/Cargo.toml | 2 +- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index df03560..cfc2030 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -394,7 +394,7 @@ dependencies = [ [[package]] name = "markdown-reader" -version = "0.1.8" +version = "0.1.9" dependencies = [ "clap", "color-eyre", @@ -896,7 +896,7 @@ dependencies = [ [[package]] name = "tui-markdown" -version = "0.2.4" +version = "0.2.5" dependencies = [ "itertools 0.13.0", "pulldown-cmark", diff --git a/markdown-reader/CHANGELOG.md b/markdown-reader/CHANGELOG.md index 1a3bc28..6c86ac0 100644 --- a/markdown-reader/CHANGELOG.md +++ b/markdown-reader/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. ## [unreleased] +## [0.1.9](https://github.com/joshka/tui-markdown/compare/markdown-reader-v0.1.8...markdown-reader-v0.1.9) - 2024-06-08 + +### Fixed +- link to crate pages + ## [0.1.8](https://github.com/joshka/tui-markdown/compare/markdown-reader-v0.1.7...markdown-reader-v0.1.8) - 2024-05-22 ### Other diff --git a/markdown-reader/Cargo.toml b/markdown-reader/Cargo.toml index b11ae88..5953ae9 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.8" +version = "0.1.9" 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.4", path = "../tui-markdown" } +tui-markdown = { version = "0.2.5", path = "../tui-markdown" } [[bin]] name = "mdr" diff --git a/tui-markdown/CHANGELOG.md b/tui-markdown/CHANGELOG.md index e2a9997..a0f39f4 100644 --- a/tui-markdown/CHANGELOG.md +++ b/tui-markdown/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. ## [unreleased] +## [0.2.5](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.4...tui-markdown-v0.2.5) - 2024-06-08 + +### Fixed +- link to crate pages + ## [0.2.4](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.3...tui-markdown-v0.2.4) - 2024-05-22 ### Other diff --git a/tui-markdown/Cargo.toml b/tui-markdown/Cargo.toml index acc7736..14ad60e 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.4" +version = "0.2.5" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/joshka/tui-markdown"