Skip to content

Commit 55b0624

Browse files
chore: release
1 parent 8f25dde commit 55b0624

File tree

10 files changed

+63
-9
lines changed

10 files changed

+63
-9
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.3.1] - 2024-10-20
6+
7+
### 🚀 Features
8+
9+
- *(cards)* Add new tui-cards library for playing cards
10+
11+
### 🐛 Bug Fixes
12+
13+
- Broken links from move to tui-widgets
14+
15+
### Other
16+
17+
- Remove patch from main Cargo.toml file that was pointing at a local path ([#38](https://github.com/joshka/tui-widgets/pull/38))
18+
519
## [0.3.0] - 2024-08-12
620

721
Ratatui-0.28.0 compatible release

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ nursery = "warn"
4141
[package]
4242
name = "tui-widgets"
4343
description = "A collection of useful widgets for building terminal user interfaces using Ratatui"
44-
version = "0.3.0"
44+
version = "0.3.1"
4545
documentation = "https://docs.rs/tui-widgets"
4646

4747
authors.workspace = true
@@ -70,8 +70,8 @@ cards = ["tui-cards"]
7070
[dependencies]
7171
document-features.workspace = true
7272
ratatui = { workspace = true }
73-
tui-big-text = { version = "0.6.0", path = "tui-big-text", optional = true }
73+
tui-big-text = { version = "0.6.1", path = "tui-big-text", optional = true }
7474
tui-cards = { version = "0.1.0", path = "tui-cards", optional = true }
75-
tui-popup = { version = "0.5.0", path = "tui-popup", optional = true }
76-
tui-prompts = { version = "0.4.0", path = "tui-prompts", optional = true }
77-
tui-scrollview = { version = "0.4.0", path = "tui-scrollview", optional = true }
75+
tui-popup = { version = "0.5.1", path = "tui-popup", optional = true }
76+
tui-prompts = { version = "0.4.1", path = "tui-prompts", optional = true }
77+
tui-scrollview = { version = "0.4.1", path = "tui-scrollview", optional = true }

tui-big-text/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.6.1] - 2024-10-20
6+
7+
### 🐛 Bug Fixes
8+
9+
- Broken links from move to tui-widgets
10+
511
## [0.6.0] - 2024-08-11
612

713
Ratatui-0.28.0 compatible release

tui-big-text/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tui-big-text"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
description = "A Ratatui widget for displaying big text in the terminal"
55
documentation = "https://docs.rs/tui-big-text"
66

tui-popup/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.5.1] - 2024-10-20
6+
7+
### 🐛 Bug Fixes
8+
9+
- Broken links from move to tui-widgets
10+
511
## [0.5.0] - 2024-08-11
612

713
Ratatui-0.28.0 compatible release

tui-popup/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tui-popup"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "A simple popup for ratatui"
55
documentation = "https://docs.rs/tui-popup"
66

tui-prompts/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.4.1] - 2024-10-20
6+
7+
### ⚙️ Miscellaneous Tasks
8+
9+
- Update Cargo.toml dependencies
10+
511
## [0.4.0] - 2024-08-11
612

713
Ratatui-0.28.0 compatible release

tui-prompts/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tui-prompts"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "A library for building interactive prompts for ratatui."
55

66
authors.workspace = true

tui-scrollview/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.4.1] - 2024-10-20
6+
7+
### 🐛 Bug Fixes
8+
9+
- Broken links from move to tui-widgets
10+
11+
- *(tui-scrollview)* Make scroll_view buffer area the same as its content ([#37](https://github.com/joshka/tui-widgets/pull/37))
12+
> This makes the scroll_view buffer area the same as its content by
13+
> default.
14+
> The previous behavior is easily reproduced by adding empty space to the
15+
> buffer. =)
16+
> Most tests remain the same with the scrollbar updated to match the new
17+
> size.
18+
>
19+
> Fixes:[#35](https://github.com/joshka/tui-widgets/pull/35)
20+
21+
### 📚 Documentation
22+
23+
- Use ratatui 0.28.1 methods for examples
24+
25+
- Demo horizontal scrolling and mark TODO as done
26+
527
## [0.4.0] - 2024-08-11
628

729
Ratatui-0.28.0 compatible release

tui-scrollview/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tui-scrollview"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "A simple scrollable view for Ratatui"
55

66
authors.workspace = true

0 commit comments

Comments
 (0)