chore: release

This commit is contained in:
github-actions[bot]
2026-01-13 12:46:43 +00:00
committed by GitHub
parent 720303e806
commit 6872dffb5d
10 changed files with 39 additions and 21 deletions

View File

@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
<!-- markdownlint-disable line-length no-bare-urls ul-style emphasis-style -->
## ratatui-termion - [0.1.1](https://github.com/ratatui/ratatui/compare/ratatui-termion-v0.1.0...ratatui-termion-v0.1.1) - 2026-01-13
**Full Changelog**: https://github.com/ratatui/ratatui/compare/ratatui-termion-v0.1.0...ratatui-termion-v0.1.1
## ratatui-termwiz - [0.1.1](https://github.com/ratatui/ratatui/compare/ratatui-termwiz-v0.1.0...ratatui-termwiz-v0.1.1) - 2026-01-13
**Full Changelog**: https://github.com/ratatui/ratatui/compare/ratatui-termwiz-v0.1.0...ratatui-termwiz-v0.1.1
## ratatui-macros - [0.7.1](https://github.com/ratatui/ratatui/compare/ratatui-macros-v0.7.0...ratatui-macros-v0.7.1) - 2026-01-13
**Full Changelog**: https://github.com/ratatui/ratatui/compare/ratatui-macros-v0.7.0...ratatui-macros-v0.7.1
## [v0.30.0](https://github.com/ratatui/ratatui/releases/tag/v0.30.0) - 2025-12-26
> _"Rats don't just survive; they discover; they create. ... I mean, just look at what they do with

14
Cargo.lock generated
View File

@@ -2641,7 +2641,7 @@ dependencies = [
[[package]]
name = "ratatui"
version = "0.30.0"
version = "0.30.1"
dependencies = [
"color-eyre",
"criterion",
@@ -2673,7 +2673,7 @@ dependencies = [
[[package]]
name = "ratatui-core"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"anstyle",
"bitflags 2.10.0",
@@ -2698,7 +2698,7 @@ dependencies = [
[[package]]
name = "ratatui-crossterm"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"cfg-if",
"crossterm 0.28.1",
@@ -2711,7 +2711,7 @@ dependencies = [
[[package]]
name = "ratatui-macros"
version = "0.7.0"
version = "0.7.1"
dependencies = [
"ratatui-core",
"ratatui-widgets",
@@ -2729,7 +2729,7 @@ dependencies = [
[[package]]
name = "ratatui-termion"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"document-features",
"instability",
@@ -2740,7 +2740,7 @@ dependencies = [
[[package]]
name = "ratatui-termwiz"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"document-features",
"ratatui",
@@ -2751,7 +2751,7 @@ dependencies = [
[[package]]
name = "ratatui-widgets"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"bitflags 2.10.0",
"color-eyre",

View File

@@ -50,13 +50,13 @@ palette = "0.7"
pretty_assertions = "1"
rand = "0.9"
rand_chacha = "0.9"
ratatui = { path = "ratatui", version = "0.30.0" }
ratatui-core = { path = "ratatui-core", version = "0.1.0" }
ratatui-crossterm = { path = "ratatui-crossterm", version = "0.1.0" }
ratatui-macros = { path = "ratatui-macros", version = "0.7.0" }
ratatui-termion = { path = "ratatui-termion", version = "0.1.0" }
ratatui-termwiz = { path = "ratatui-termwiz", version = "0.1.0" }
ratatui-widgets = { path = "ratatui-widgets", version = "0.3.0" }
ratatui = { path = "ratatui", version = "0.30.1" }
ratatui-core = { path = "ratatui-core", version = "0.1.1" }
ratatui-crossterm = { path = "ratatui-crossterm", version = "0.1.1" }
ratatui-macros = { path = "ratatui-macros", version = "0.7.1" }
ratatui-termion = { path = "ratatui-termion", version = "0.1.1" }
ratatui-termwiz = { path = "ratatui-termwiz", version = "0.1.1" }
ratatui-widgets = { path = "ratatui-widgets", version = "0.3.1" }
rstest = "0.26"
serde = { version = "1", features = ["derive"] }
serde_json = "1"

View File

@@ -1,6 +1,6 @@
[package]
name = "ratatui-core"
version = "0.1.0"
version = "0.1.1"
description = """
Core types and traits for the Ratatui Terminal UI library.
Widget libraries should use this crate. Applications should use the main Ratatui crate.

View File

@@ -1,6 +1,6 @@
[package]
name = "ratatui-crossterm"
version = "0.1.0"
version = "0.1.1"
description = "Crossterm backend for the Ratatui Terminal UI library."
documentation = "https://docs.rs/ratatui-crossterm"
readme = "README.md"

View File

@@ -1,6 +1,6 @@
[package]
name = "ratatui-macros"
version = "0.7.0"
version = "0.7.1"
description = "Macros for Ratatui"
edition.workspace = true
authors = ["The Ratatui Developers"]

View File

@@ -1,6 +1,6 @@
[package]
name = "ratatui-termion"
version = "0.1.0"
version = "0.1.1"
description = "Termion backend for the Ratatui Terminal UI library."
documentation = "https://docs.rs/ratatui-termion"
readme = "README.md"

View File

@@ -1,6 +1,6 @@
[package]
name = "ratatui-termwiz"
version = "0.1.0"
version = "0.1.1"
description = "Termwiz backend for the Ratatui Terminal UI library."
documentation = "https://docs.rs/ratatui-termwiz"
readme = "README.md"

View File

@@ -2,7 +2,7 @@
name = "ratatui-widgets"
# Note that this started at 0.3.0 as there was a previous crate using the name `ratatui-widgets`.
# <https://github.com/joshka/ratatui-widgets/issues/46>
version = "0.3.0"
version = "0.3.1"
description = "A collection of Ratatui widgets for building terminal user interfaces using Ratatui."
documentation = "https://docs.rs/ratatui-widgets"
readme = "README.md"

View File

@@ -1,7 +1,7 @@
[package]
name = "ratatui"
description = "A library that's all about cooking up terminal user interfaces"
version = "0.30.0"
version = "0.30.1"
authors.workspace = true
documentation.workspace = true
repository.workspace = true