Skip to content

Commit 561f310

Browse files
authoredApr 24, 2024··
chore: release (#16)
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 6338683 commit 561f310

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed
 

‎Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎markdown-reader/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
44

55
## [unreleased]
66

7+
## [0.1.7](https://github.com/joshka/tui-markdown/compare/markdown-reader-v0.1.6...markdown-reader-v0.1.7) - 2024-04-24
8+
9+
### Other
10+
- *(deps)* bump ratatui from 0.26.1 to 0.26.2 ([#20](https://github.com/joshka/tui-markdown/pull/20))
11+
- *(deps)* bump time from 0.3.34 to 0.3.36 ([#21](https://github.com/joshka/tui-markdown/pull/21))
12+
- *(deps)* bump clap from 4.5.3 to 4.5.4 ([#17](https://github.com/joshka/tui-markdown/pull/17))
13+
- *(deps)* bump color-eyre from 0.6.2 to 0.6.3 ([#14](https://github.com/joshka/tui-markdown/pull/14))
14+
- *(deps)* bump clap from 4.5.2 to 4.5.3 ([#15](https://github.com/joshka/tui-markdown/pull/15))
15+
716
## [0.1.6](https://github.com/joshka/tui-markdown/compare/markdown-reader-v0.1.5...markdown-reader-v0.1.6) - 2024-03-12
817

918
### Other

‎markdown-reader/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "markdown-reader"
33
description = "A simple markdown reader that uses ratatui to render markdown files."
4-
version = "0.1.6"
4+
version = "0.1.7"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/joshka/tui-markdown"
@@ -22,7 +22,7 @@ tracing = "0.1.40"
2222
tracing-error = "0.2.0"
2323
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
2424
time = { version = "0.3.36", features = ["formatting", "macros"] }
25-
tui-markdown = { version = "0.2.2", path = "../tui-markdown" }
25+
tui-markdown = { version = "0.2.3", path = "../tui-markdown" }
2626

2727
[[bin]]
2828
name = "mdr"

‎tui-markdown/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44

55
## [unreleased]
66

7+
## [0.2.3](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.2...tui-markdown-v0.2.3) - 2024-04-24
8+
9+
### Other
10+
- *(deps)* bump pulldown-cmark ([#23](https://github.com/joshka/tui-markdown/pull/23))
11+
- *(deps)* bump ratatui from 0.26.1 to 0.26.2 ([#20](https://github.com/joshka/tui-markdown/pull/20))
12+
- *(deps)* bump pulldown-cmark from 0.10.0 to 0.10.2 ([#19](https://github.com/joshka/tui-markdown/pull/19))
13+
714
## [0.2.2](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.1...tui-markdown-v0.2.2) - 2024-02-29
815

916
### Other

‎tui-markdown/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tui-markdown"
33
description = "A simple library for converting markdown to a Rataui Text value"
4-
version = "0.2.2"
4+
version = "0.2.3"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/joshka/tui-markdown"

0 commit comments

Comments
 (0)
Please sign in to comment.