chore: release

This commit is contained in:
github-actions[bot] 2025-10-14 04:37:48 +00:00 committed by GitHub
parent b176d04e59
commit bf40962d02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 22 additions and 21 deletions

View File

@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file.
<!-- ignore lint rules that are often triggered by content generated from commits / git-cliff -->
<!-- markdownlint-disable line-length no-bare-urls ul-style emphasis-style -->
## ratatui - [0.30.0-alpha.5](https://github.com/ratatui/ratatui/compare/ratatui-v0.30.0-alpha.4...ratatui-v0.30.0-alpha.5) - 2025-06-30
### Features

14
Cargo.lock generated
View File

@ -2488,7 +2488,7 @@ dependencies = [
[[package]]
name = "ratatui"
version = "0.30.0-alpha.5"
version = "0.30.0-alpha.6"
dependencies = [
"color-eyre",
"criterion",
@ -2520,7 +2520,7 @@ dependencies = [
[[package]]
name = "ratatui-core"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
dependencies = [
"anstyle",
"bitflags 2.9.4",
@ -2545,7 +2545,7 @@ dependencies = [
[[package]]
name = "ratatui-crossterm"
version = "0.1.0-alpha.5"
version = "0.1.0-alpha.6"
dependencies = [
"cfg-if",
"crossterm 0.28.1",
@ -2558,7 +2558,7 @@ dependencies = [
[[package]]
name = "ratatui-macros"
version = "0.7.0-alpha.4"
version = "0.7.0-alpha.5"
dependencies = [
"ratatui-core",
"ratatui-widgets",
@ -2576,7 +2576,7 @@ dependencies = [
[[package]]
name = "ratatui-termion"
version = "0.1.0-alpha.5"
version = "0.1.0-alpha.6"
dependencies = [
"document-features",
"instability",
@ -2587,7 +2587,7 @@ dependencies = [
[[package]]
name = "ratatui-termwiz"
version = "0.1.0-alpha.5"
version = "0.1.0-alpha.6"
dependencies = [
"document-features",
"ratatui",
@ -2598,7 +2598,7 @@ dependencies = [
[[package]]
name = "ratatui-widgets"
version = "0.3.0-alpha.5"
version = "0.3.0-alpha.6"
dependencies = [
"bitflags 2.9.4",
"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-alpha.5" }
ratatui-core = { path = "ratatui-core", version = "0.1.0-alpha.6" }
ratatui-crossterm = { path = "ratatui-crossterm", version = "0.1.0-alpha.5" }
ratatui-macros = { path = "ratatui-macros", version = "0.7.0-alpha.4" }
ratatui-termion = { path = "ratatui-termion", version = "0.1.0-alpha.5" }
ratatui-termwiz = { path = "ratatui-termwiz", version = "0.1.0-alpha.5" }
ratatui-widgets = { path = "ratatui-widgets", version = "0.3.0-alpha.5" }
ratatui = { path = "ratatui", version = "0.30.0-alpha.6" }
ratatui-core = { path = "ratatui-core", version = "0.1.0-alpha.7" }
ratatui-crossterm = { path = "ratatui-crossterm", version = "0.1.0-alpha.6" }
ratatui-macros = { path = "ratatui-macros", version = "0.7.0-alpha.5" }
ratatui-termion = { path = "ratatui-termion", version = "0.1.0-alpha.6" }
ratatui-termwiz = { path = "ratatui-termwiz", version = "0.1.0-alpha.6" }
ratatui-widgets = { path = "ratatui-widgets", version = "0.3.0-alpha.6" }
rstest = "0.26"
serde = { version = "1", features = ["derive"] }
serde_json = "1"

View File

@ -4,7 +4,7 @@ description = """
Core types and traits for the Ratatui Terminal UI library.
Widget libraries should use this crate. Applications should use the main Ratatui crate.
"""
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
readme = "README.md"
authors.workspace = true
documentation.workspace = true

View File

@ -1,6 +1,6 @@
[package]
name = "ratatui-crossterm"
version = "0.1.0-alpha.5"
version = "0.1.0-alpha.6"
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-alpha.4"
version = "0.7.0-alpha.5"
edition.workspace = true
authors = ["The Ratatui Developers"]
description = "Macros for Ratatui"

View File

@ -1,6 +1,6 @@
[package]
name = "ratatui-termion"
version = "0.1.0-alpha.5"
version = "0.1.0-alpha.6"
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-alpha.5"
version = "0.1.0-alpha.6"
description = "Termwiz backend for the Ratatui Terminal UI library."
documentation = "https://docs.rs/ratatui-termwiz/"
readme = "README.md"

View File

@ -3,7 +3,7 @@ name = "ratatui-widgets"
description = "A collection of Ratatui widgets for building terminal user interfaces using Ratatui."
# 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-alpha.5"
version = "0.3.0-alpha.6"
readme = "README.md"
authors.workspace = true
documentation.workspace = true

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-alpha.5"
version = "0.30.0-alpha.6"
authors.workspace = true
documentation.workspace = true
repository.workspace = true