Skip to content

Commit 1599981

Browse files
chore: release (#59)
* chore: release * bump tui-markdown to 0.3.0 --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Josh McKinney <[email protected]>
1 parent 6b0519a commit 1599981

File tree

6 files changed

+31
-8
lines changed

6 files changed

+31
-8
lines changed

Cargo.lock

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

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ authors = ["Joshka"]
1212

1313
[workspace.dependencies]
1414
ratatui = { version = "0.29.0", default-features = false }
15+
tui-markdown = { version = "0.3.0", path = "tui-markdown" }
1516

1617
[patch.crates-io]
1718
# when developing ratatui, uncomment this line to use the local version

markdown-reader/CHANGELOG.md

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

55
## [unreleased]
66

7+
## [0.1.20](https://github.com/joshka/tui-markdown/compare/markdown-reader-v0.1.19...markdown-reader-v0.1.20) - 2024-11-20
8+
9+
### Other
10+
11+
- *(deps)* bump the cargo-dependencies group across 1 directory with 3 updates ([#58](https://github.com/joshka/tui-markdown/pull/58))
12+
713
## [0.1.19](https://github.com/joshka/tui-markdown/compare/markdown-reader-v0.1.18...markdown-reader-v0.1.19) - 2024-10-22
814

915
### Other

markdown-reader/Cargo.toml

+3-5
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.19"
4+
version = "0.1.20"
55
documentation = "https://docs.rs/markdown-reader"
66
categories = ["command-line-interface"]
77
keywords = ["cli", "markdown", "ratatui", "terminal", "tui"]
@@ -17,14 +17,12 @@ clap = { version = "4.5.21", features = ["derive"] }
1717
color-eyre = "0.6.3"
1818
crossterm = "0.28.1"
1919
itertools = "0.13.0"
20-
ratatui = { workspace = true, default-features = true, features = [
21-
"unstable-widget-ref",
22-
] }
20+
ratatui = { workspace = true, default-features = true, features = ["unstable-widget-ref"] }
2321
tracing = "0.1.40"
2422
tracing-error = "0.2.0"
2523
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
2624
time = { version = "0.3.36", features = ["formatting", "macros"] }
27-
tui-markdown = { version = "0.2.12", path = "../tui-markdown" }
25+
tui-markdown.workspace = true
2826

2927
[[bin]]
3028
name = "mdr"

tui-markdown/CHANGELOG.md

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

55
## [unreleased]
66

7+
## [0.3.0](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.12...tui-markdown-v0.3.0) - 2024-11-20
8+
9+
### Other
10+
11+
- *(deps)* bump the cargo-dependencies group across 1 directory with 3 updates ([#58](https://github.com/joshka/tui-markdown/pull/58))
12+
713
## [0.2.12](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.11...tui-markdown-v0.2.12) - 2024-10-22
814

915
### Other
@@ -36,63 +42,75 @@ All notable changes to this project will be documented in this file.
3642
## [0.2.8](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.7...tui-markdown-v0.2.8) - 2024-09-02
3743

3844
### Other
45+
3946
- *(deps)* bump the cargo-dependencies group across 1 directory with 3 updates ([#41](https://github.com/joshka/tui-markdown/pull/41))
4047
- *(deps)* bump the cargo-dependencies group with 2 updates ([#38](https://github.com/joshka/tui-markdown/pull/38))
4148

4249
## [0.2.7](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.6...tui-markdown-v0.2.7) - 2024-08-06
4350

4451
### Other
52+
4553
- use crossterm version re-exported from ratatui
4654

4755
## [0.2.6](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.5...tui-markdown-v0.2.6) - 2024-06-24
4856

4957
### Other
58+
5059
- *(deps)* bump ratatui in the cargo-dependencies group ([#29](https://github.com/joshka/tui-markdown/pull/29))
5160

5261
## [0.2.5](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.4...tui-markdown-v0.2.5) - 2024-06-08
5362

5463
### Fixed
64+
5565
- link to crate pages
5666

5767
## [0.2.4](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.3...tui-markdown-v0.2.4) - 2024-05-22
5868

5969
### Other
70+
6071
- *(deps)* bump the cargo-dependencies group with 3 updates ([#24](https://github.com/joshka/tui-markdown/pull/24))
6172

6273
## [0.2.3](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.2...tui-markdown-v0.2.3) - 2024-04-24
6374

6475
### Other
76+
6577
- *(deps)* bump pulldown-cmark ([#23](https://github.com/joshka/tui-markdown/pull/23))
6678
- *(deps)* bump ratatui from 0.26.1 to 0.26.2 ([#20](https://github.com/joshka/tui-markdown/pull/20))
6779
- *(deps)* bump pulldown-cmark from 0.10.0 to 0.10.2 ([#19](https://github.com/joshka/tui-markdown/pull/19))
6880

6981
## [0.2.2](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.1...tui-markdown-v0.2.2) - 2024-02-29
7082

7183
### Other
84+
7285
- update license info in readme files
7386
- add a note about the experimental state
7487

7588
## [0.2.1](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.2.0...tui-markdown-v0.2.1) - 2024-02-27
7689

7790
### Other
91+
7892
- fix more links / badges
7993
- fmt
8094

8195
## [0.2.0](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.1.1...tui-markdown-v0.2.0) - 2024-02-27
8296

8397
### Added
98+
8499
- add filename and pageUp/Down
85100
- support code blocks in tui-markdown
86101

87102
### Fixed
103+
88104
- Update urls in Cargo.toml ([#4](https://github.com/joshka/tui-markdown/pull/4))
89105

90106
### Other
107+
91108
- add note about newlines
92109

93110
## [0.1.1](https://github.com/joshka/tui-markdown/compare/tui-markdown-v0.1.0...tui-markdown-v0.1.1) - 2024-02-27
94111

95112
### Other
113+
96114
- add CHANGELOGs
97115

98116
### 🚀 Features

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.12"
4+
version = "0.3.0"
55
documentation = "https://docs.rs/tui-markdown"
66
categories = ["command-line-interface"]
77
keywords = ["cli", "markdown", "ratatui", "terminal", "tui"]

0 commit comments

Comments
 (0)