Compare commits

...

6 Commits

Author SHA1 Message Date
Orhun Parmaksız
03b81a4ab1 chore(release): update versions for beta release 2025-10-28 23:10:23 +03:00
Orhun Parmaksız
a87bd8cc05 chore(changelog): update for 0.30 beta release 2025-10-28 23:10:20 +03:00
Orhun Parmaksız
a083cf13ab chore(changelog): skip release entries 2025-10-28 23:10:18 +03:00
Orhun Parmaksız
28f486bc9c chore(changelog): add new contributors section 2025-10-28 23:10:15 +03:00
Orhun Parmaksız
4d0d76e726 docs(changelog): add note to ratatui-macros' changelog 2025-10-28 23:10:12 +03:00
github-actions[bot]
b3d19d3e2b chore: release 2025-10-28 20:07:54 +00:00
12 changed files with 1731 additions and 1727 deletions

File diff suppressed because it is too large Load Diff

14
Cargo.lock generated
View File

@@ -2469,7 +2469,7 @@ dependencies = [
[[package]]
name = "ratatui"
version = "0.30.0-alpha.5"
version = "0.30.0-beta.0"
dependencies = [
"color-eyre",
"criterion",
@@ -2501,7 +2501,7 @@ dependencies = [
[[package]]
name = "ratatui-core"
version = "0.1.0-alpha.6"
version = "0.1.0-beta.0"
dependencies = [
"anstyle",
"bitflags 2.10.0",
@@ -2526,7 +2526,7 @@ dependencies = [
[[package]]
name = "ratatui-crossterm"
version = "0.1.0-alpha.5"
version = "0.1.0-beta.0"
dependencies = [
"cfg-if",
"crossterm 0.28.1",
@@ -2539,7 +2539,7 @@ dependencies = [
[[package]]
name = "ratatui-macros"
version = "0.7.0-alpha.4"
version = "0.7.0-beta.0"
dependencies = [
"ratatui-core",
"ratatui-widgets",
@@ -2557,7 +2557,7 @@ dependencies = [
[[package]]
name = "ratatui-termion"
version = "0.1.0-alpha.5"
version = "0.1.0-beta.0"
dependencies = [
"document-features",
"instability",
@@ -2568,7 +2568,7 @@ dependencies = [
[[package]]
name = "ratatui-termwiz"
version = "0.1.0-alpha.5"
version = "0.1.0-beta.0"
dependencies = [
"document-features",
"ratatui",
@@ -2579,7 +2579,7 @@ dependencies = [
[[package]]
name = "ratatui-widgets"
version = "0.3.0-alpha.5"
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-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-beta.0" }
ratatui-core = { path = "ratatui-core", version = "0.1.0-beta.0" }
ratatui-crossterm = { path = "ratatui-crossterm", version = "0.1.0-beta.0" }
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

@@ -61,6 +61,18 @@ body = """
{%- endfor -%}
{%- endfor %}
{%- if not release_link -%}
{% if github.contributors | filter(attribute="is_first_time", value=true) | length != 0 %}
### New Contributors
{%- endif %}\
{% for contributor in github.contributors | filter(attribute="is_first_time", value=true) %}
* @{{ contributor.username }} made their first contribution
{%- if contributor.pr_number %} in \
[#{{ contributor.pr_number }}]({{ self::remote_url() }}/pull/{{ contributor.pr_number }}) \
{%- endif %}
{%- endfor -%}
{%- endif -%}
{% if version %}
{% if previous.version %}
{%- if release_link -%}
@@ -126,12 +138,14 @@ commit_parsers = [
{ message = "^style", group = "<!-- 05 -->Styling" },
{ message = "^test", group = "<!-- 06 -->Testing" },
{ message = "^chore\\(release\\): prepare for", skip = true },
{ message = "^chore: release", skip = true },
{ message = "^chore\\(pr\\)", skip = true },
{ message = "^chore\\(pull\\)", skip = true },
{ message = "^chore\\(deps\\)", skip = true },
{ message = "^chore\\(changelog\\)", skip = true },
{ message = "^[cC]hore", group = "<!-- 07 -->Miscellaneous Tasks" },
{ message = "^build\\(deps\\)", skip = true },
{ message = "^build\\(release\\)", skip = true },
{ message = "^build", group = "<!-- 08 -->Build" },
{ body = ".*security", group = "<!-- 09 -->Security" },
{ message = "^ci", group = "<!-- 10 -->Continuous Integration" },

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-beta.0"
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-beta.0"
description = "Crossterm backend for the Ratatui Terminal UI library."
documentation = "https://docs.rs/ratatui-crossterm/"
readme = "README.md"

View File

@@ -1,9 +1,8 @@
# Changelog
All notable changes to this project will be documented in this file.
See the [top-level changelog](../CHANGELOG.md) for the latest changes.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
This file is obsolete as of 0.30.0 release. [\*](https://github.com/ratatui/ratatui/pull/1652)
## [0.6.0](https://github.com/ratatui/ratatui-macros/compare/v0.5.0...v0.6.0) - 2024-10-21

View File

@@ -1,6 +1,6 @@
[package]
name = "ratatui-macros"
version = "0.7.0-alpha.4"
version = "0.7.0-beta.0"
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-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-alpha.5"
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

@@ -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-beta.0"
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-beta.0"
authors.workspace = true
documentation.workspace = true
repository.workspace = true