chore: revert the 0.30-beta.1 update to re-trigger release-plz (#2291)

This commit is contained in:
Orhun Parmaksız 2025-12-24 00:14:55 +03:00 committed by GitHub
parent 06a30ccc72
commit 04e86bbfa9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 16 additions and 16 deletions

View File

@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
<!-- markdownlint-disable line-length no-bare-urls ul-style emphasis-style -->
## [v0.30.0-beta.1](https://github.com/ratatui/ratatui/releases/tag/v0.30.0-beta.1) - 2025-12-23
## [v0.30.0-beta.0](https://github.com/ratatui/ratatui/releases/tag/v0.30.0-beta.0) - 2025-12-23
> _"Rats don't just survive; they discover; they create. ... I mean, just look at what they do with
the terminal!" Remy & Orhun_

10
Cargo.lock generated
View File

@ -2641,7 +2641,7 @@ dependencies = [
[[package]]
name = "ratatui"
version = "0.30.0-beta.1"
version = "0.30.0-beta.0"
dependencies = [
"color-eyre",
"criterion",
@ -2711,7 +2711,7 @@ dependencies = [
[[package]]
name = "ratatui-macros"
version = "0.7.0-beta.1"
version = "0.7.0-beta.0"
dependencies = [
"ratatui-core",
"ratatui-widgets",
@ -2729,7 +2729,7 @@ dependencies = [
[[package]]
name = "ratatui-termion"
version = "0.1.0-beta.1"
version = "0.1.0-beta.0"
dependencies = [
"document-features",
"instability",
@ -2740,7 +2740,7 @@ dependencies = [
[[package]]
name = "ratatui-termwiz"
version = "0.1.0-beta.1"
version = "0.1.0-beta.0"
dependencies = [
"document-features",
"ratatui",
@ -2751,7 +2751,7 @@ dependencies = [
[[package]]
name = "ratatui-widgets"
version = "0.3.0-beta.1"
version = "0.3.0-beta.0"
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-beta.1" }
ratatui = { path = "ratatui", version = "0.30.0-beta.0" }
ratatui-core = { path = "ratatui-core", version = "0.1.0-beta.1" }
ratatui-crossterm = { path = "ratatui-crossterm", version = "0.1.0-beta.1" }
ratatui-macros = { path = "ratatui-macros", version = "0.7.0-beta.1" }
ratatui-termion = { path = "ratatui-termion", version = "0.1.0-beta.1" }
ratatui-termwiz = { path = "ratatui-termwiz", version = "0.1.0-beta.1" }
ratatui-widgets = { path = "ratatui-widgets", version = "0.3.0-beta.1" }
ratatui-macros = { path = "ratatui-macros", version = "0.7.0-beta.0" }
ratatui-termion = { path = "ratatui-termion", version = "0.1.0-beta.0" }
ratatui-termwiz = { path = "ratatui-termwiz", version = "0.1.0-beta.0" }
ratatui-widgets = { path = "ratatui-widgets", version = "0.3.0-beta.0" }
rstest = "0.26"
serde = { version = "1", features = ["derive"] }
serde_json = "1"

View File

@ -1,6 +1,6 @@
[package]
name = "ratatui-macros"
version = "0.7.0-beta.1"
version = "0.7.0-beta.0"
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-beta.1"
version = "0.1.0-beta.0"
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-beta.1"
version = "0.1.0-beta.0"
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-beta.1"
version = "0.3.0-beta.0"
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-beta.1"
version = "0.30.0-beta.0"
authors.workspace = true
documentation.workspace = true
repository.workspace = true