chore: revert the 0.30-beta.1 update to re-trigger release-plz (#2291)
This commit is contained in:
@@ -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 -->
|
<!-- 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
|
> _"Rats don't just survive; they discover; they create. ... I mean, just look at what they do with
|
||||||
the terminal!" – Remy & Orhun_
|
the terminal!" – Remy & Orhun_
|
||||||
|
|||||||
10
Cargo.lock
generated
10
Cargo.lock
generated
@@ -2641,7 +2641,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ratatui"
|
name = "ratatui"
|
||||||
version = "0.30.0-beta.1"
|
version = "0.30.0-beta.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"color-eyre",
|
"color-eyre",
|
||||||
"criterion",
|
"criterion",
|
||||||
@@ -2711,7 +2711,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ratatui-macros"
|
name = "ratatui-macros"
|
||||||
version = "0.7.0-beta.1"
|
version = "0.7.0-beta.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ratatui-core",
|
"ratatui-core",
|
||||||
"ratatui-widgets",
|
"ratatui-widgets",
|
||||||
@@ -2729,7 +2729,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ratatui-termion"
|
name = "ratatui-termion"
|
||||||
version = "0.1.0-beta.1"
|
version = "0.1.0-beta.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"document-features",
|
"document-features",
|
||||||
"instability",
|
"instability",
|
||||||
@@ -2740,7 +2740,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ratatui-termwiz"
|
name = "ratatui-termwiz"
|
||||||
version = "0.1.0-beta.1"
|
version = "0.1.0-beta.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"document-features",
|
"document-features",
|
||||||
"ratatui",
|
"ratatui",
|
||||||
@@ -2751,7 +2751,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ratatui-widgets"
|
name = "ratatui-widgets"
|
||||||
version = "0.3.0-beta.1"
|
version = "0.3.0-beta.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.10.0",
|
"bitflags 2.10.0",
|
||||||
"color-eyre",
|
"color-eyre",
|
||||||
|
|||||||
10
Cargo.toml
10
Cargo.toml
@@ -50,13 +50,13 @@ palette = "0.7"
|
|||||||
pretty_assertions = "1"
|
pretty_assertions = "1"
|
||||||
rand = "0.9"
|
rand = "0.9"
|
||||||
rand_chacha = "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-core = { path = "ratatui-core", version = "0.1.0-beta.1" }
|
||||||
ratatui-crossterm = { path = "ratatui-crossterm", 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-macros = { path = "ratatui-macros", version = "0.7.0-beta.0" }
|
||||||
ratatui-termion = { path = "ratatui-termion", version = "0.1.0-beta.1" }
|
ratatui-termion = { path = "ratatui-termion", version = "0.1.0-beta.0" }
|
||||||
ratatui-termwiz = { path = "ratatui-termwiz", version = "0.1.0-beta.1" }
|
ratatui-termwiz = { path = "ratatui-termwiz", version = "0.1.0-beta.0" }
|
||||||
ratatui-widgets = { path = "ratatui-widgets", version = "0.3.0-beta.1" }
|
ratatui-widgets = { path = "ratatui-widgets", version = "0.3.0-beta.0" }
|
||||||
rstest = "0.26"
|
rstest = "0.26"
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ratatui-macros"
|
name = "ratatui-macros"
|
||||||
version = "0.7.0-beta.1"
|
version = "0.7.0-beta.0"
|
||||||
description = "Macros for Ratatui"
|
description = "Macros for Ratatui"
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
authors = ["The Ratatui Developers"]
|
authors = ["The Ratatui Developers"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ratatui-termion"
|
name = "ratatui-termion"
|
||||||
version = "0.1.0-beta.1"
|
version = "0.1.0-beta.0"
|
||||||
description = "Termion backend for the Ratatui Terminal UI library."
|
description = "Termion backend for the Ratatui Terminal UI library."
|
||||||
documentation = "https://docs.rs/ratatui-termion"
|
documentation = "https://docs.rs/ratatui-termion"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ratatui-termwiz"
|
name = "ratatui-termwiz"
|
||||||
version = "0.1.0-beta.1"
|
version = "0.1.0-beta.0"
|
||||||
description = "Termwiz backend for the Ratatui Terminal UI library."
|
description = "Termwiz backend for the Ratatui Terminal UI library."
|
||||||
documentation = "https://docs.rs/ratatui-termwiz"
|
documentation = "https://docs.rs/ratatui-termwiz"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
name = "ratatui-widgets"
|
name = "ratatui-widgets"
|
||||||
# Note that this started at 0.3.0 as there was a previous crate using the 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>
|
# <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."
|
description = "A collection of Ratatui widgets for building terminal user interfaces using Ratatui."
|
||||||
documentation = "https://docs.rs/ratatui-widgets"
|
documentation = "https://docs.rs/ratatui-widgets"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ratatui"
|
name = "ratatui"
|
||||||
description = "A library that's all about cooking up terminal user interfaces"
|
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
|
authors.workspace = true
|
||||||
documentation.workspace = true
|
documentation.workspace = true
|
||||||
repository.workspace = true
|
repository.workspace = true
|
||||||
|
|||||||
Reference in New Issue
Block a user