Skip to content

Commit faf1514

Browse files
committed
chore: prep for alpha release using ratatui-0.30 alpha
1 parent d4f6292 commit faf1514

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ crossterm = { version = "0.28.1" }
1919
derive_builder = "0.20.2"
2020
derive-getters = "0.5.0"
2121
derive_setters = "0.1.6"
22-
document-features = "0.2.10"
22+
document-features = "0.2.11"
2323
futures = "0.3.31"
2424
itertools = "0.14.0"
2525
indoc = "2.0.5"
@@ -46,7 +46,7 @@ nursery = "warn"
4646
[package]
4747
name = "tui-widgets"
4848
description = "A collection of useful widgets for building terminal user interfaces using Ratatui"
49-
version = "0.4.1"
49+
version = "0.5.0-alpha.0"
5050
documentation = "https://docs.rs/tui-widgets"
5151

5252
authors.workspace = true
@@ -86,10 +86,10 @@ scrollview = ["tui-scrollview"]
8686

8787
[dependencies]
8888
document-features.workspace = true
89-
tui-big-text = { version = "0.7.0", path = "tui-big-text", optional = true }
90-
tui-box-text = { version = "0.2.0", path = "tui-box-text", optional = true }
91-
tui-cards = { version = "0.2.0", path = "tui-cards", optional = true }
92-
tui-popup = { version = "0.6.0", path = "tui-popup", optional = true }
93-
tui-prompts = { version = "0.5.0", path = "tui-prompts", optional = true }
94-
tui-qrcode = { version = "0.1.0", path = "tui-qrcode", optional = true }
95-
tui-scrollview = { version = "0.5.1", path = "tui-scrollview", optional = true }
89+
tui-big-text = { version = "0.8.0-alpha.0", path = "tui-big-text", optional = true }
90+
tui-box-text = { version = "0.3.0-alpha.0", path = "tui-box-text", optional = true }
91+
tui-cards = { version = "0.3.0-alpha.0", path = "tui-cards", optional = true }
92+
tui-popup = { version = "0.7.0-alpha.0", path = "tui-popup", optional = true }
93+
tui-prompts = { version = "0.6.0-alpha.0", path = "tui-prompts", optional = true }
94+
tui-qrcode = { version = "0.2.0-alpha.0", path = "tui-qrcode", optional = true }
95+
tui-scrollview = { version = "0.6.0-alpha.0", path = "tui-scrollview", optional = true }

tui-big-text/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tui-big-text"
3-
version = "0.7.1"
3+
version = "0.8.0-alpha.0"
44
description = "A Ratatui widget for displaying big text in the terminal"
55
documentation = "https://docs.rs/tui-big-text"
66

tui-box-text/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tui-box-text"
33
description = "A Ratatui widget for displaying text using the box drawing characters"
4-
version = "0.2.0"
4+
version = "0.3.0-alpha.0"
55
authors.workspace = true
66
license.workspace = true
77
repository.workspace = true

tui-cards/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tui-cards"
3-
version = "0.2.2"
3+
version = "0.3.0-alpha.0"
44
description = "A playing card widget for Ratatui"
55
documentation = "https://docs.rs/tui-cards"
66

tui-popup/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tui-popup"
3-
version = "0.6.0"
3+
version = "0.7.0-alpha.0"
44
description = "A simple popup for ratatui"
55
documentation = "https://docs.rs/tui-popup"
66

tui-prompts/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tui-prompts"
3-
version = "0.5.0"
3+
version = "0.6.0-alpha.0"
44
description = "A library for building interactive prompts for ratatui."
55

66
authors.workspace = true

tui-qrcode/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tui-qrcode"
3-
version = "0.1.1"
3+
version = "0.2.0-alpha.0"
44
description = "A Ratatui widget for displaying QR codes in the terminal"
55
documentation = "https://docs.rs/tui-qrcode"
66

tui-scrollview/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tui-scrollview"
3-
version = "0.5.1"
3+
version = "0.6.0-alpha.0"
44
description = "A simple scrollable view for Ratatui"
55

66
authors.workspace = true

0 commit comments

Comments
 (0)