From 0dcbe58595db8d5a3228813d2791441f176ff085 Mon Sep 17 00:00:00 2001 From: mnmaita <47983254+mnmaita@users.noreply.github.com> Date: Thu, 11 Jun 2026 15:01:05 +0200 Subject: [PATCH 1/4] Bumps bevy version requirement to 0.19.0-rc.3 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 023950e..1308c63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ categories = [ exclude = [".github/**/*"] [dependencies] -bevy = { version = "0.18", default-features = false, features = [ +bevy = { version = "0.19.0-rc.3", default-features = false, features = [ "bevy_asset", "bevy_log", ] } @@ -37,5 +37,5 @@ unic-langid = { version = "0.9.4", features = ["serde"] } uuid = { version = "1.7.0", features = ["serde", "v4", "v5"] } [dev-dependencies] -bevy = "0.18" +bevy = "0.19.0-rc.3" unic-langid = { version = "0.9.4", features = ["macros"] } From 04537cc43e05b87cc9583f15ed46b314b74701ad Mon Sep 17 00:00:00 2001 From: mnmaita <47983254+mnmaita@users.noreply.github.com> Date: Thu, 11 Jun 2026 15:01:23 +0200 Subject: [PATCH 2/4] Migrates code to 0.19 --- examples/ui/systems/menu.rs | 16 ++++++++-------- src/assets/bundle.rs | 7 +------ 2 files changed, 9 insertions(+), 14 deletions(-) diff --git a/examples/ui/systems/menu.rs b/examples/ui/systems/menu.rs index 3c1df06..0b3d522 100644 --- a/examples/ui/systems/menu.rs +++ b/examples/ui/systems/menu.rs @@ -55,8 +55,8 @@ pub fn setup( parent.spawn(( Text(choose_language), TextFont { - font: font.0.clone(), - font_size: 64.0, + font: font.0.clone().into(), + font_size: FontSize::Px(64.0), ..default() }, TextColor(Color::WHITE), @@ -92,8 +92,8 @@ pub fn setup( parent.spawn(( Text("<".to_string()), TextFont { - font: font.0.clone(), - font_size: 64.0, + font: font.0.clone().into(), + font_size: FontSize::Px(64.0), ..default() }, TextColor(Color::WHITE), @@ -116,8 +116,8 @@ pub fn setup( parent.spawn(( Text(locale), TextFont { - font: font.0.clone(), - font_size: 64.0, + font: font.0.clone().into(), + font_size: FontSize::Px(64.0), ..default() }, TextColor(Color::WHITE), @@ -142,8 +142,8 @@ pub fn setup( parent.spawn(( Text(">".to_string()), TextFont { - font: font.0.clone(), - font_size: 64.0, + font: font.0.clone().into(), + font_size: FontSize::Px(64.0), ..default() }, TextColor(Color::WHITE), diff --git a/src/assets/bundle.rs b/src/assets/bundle.rs index 9a9bb50..af4cf5e 100644 --- a/src/assets/bundle.rs +++ b/src/assets/bundle.rs @@ -79,12 +79,7 @@ async fn load(data: Data, load_context: &mut LoadContext<'_>) -> Result().unwrap(); if let Err(errors) = bundle.add_resource(resource.0.clone()) { warn_span!("add_resource").in_scope(|| { From b1f2406e6dfb936f62a709d3321aeb4d190b52a7 Mon Sep 17 00:00:00 2001 From: mnmaita <47983254+mnmaita@users.noreply.github.com> Date: Thu, 11 Jun 2026 15:18:24 +0200 Subject: [PATCH 3/4] Updates thiserror version requirement to 2.0.18 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1308c63..57ac2ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ intl-memoizer = "0.5.1" ron = "0.12" serde = { version = "1.0.197", features = ["derive"] } serde_yaml = "0.9.32" -thiserror = "1.0.58" +thiserror = "2.0.18" tracing = "0.1.40" unic-langid = { version = "0.9.4", features = ["serde"] } uuid = { version = "1.7.0", features = ["serde", "v4", "v5"] } From 1e676f8d1a35e738f57fa868372b4aec9a1ba13a Mon Sep 17 00:00:00 2001 From: mnmaita <47983254+mnmaita@users.noreply.github.com> Date: Sat, 20 Jun 2026 12:44:18 +0200 Subject: [PATCH 4/4] Updates bevy version requirement to 0.19 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 57ac2ab..759530d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ categories = [ exclude = [".github/**/*"] [dependencies] -bevy = { version = "0.19.0-rc.3", default-features = false, features = [ +bevy = { version = "0.19.0", default-features = false, features = [ "bevy_asset", "bevy_log", ] } @@ -37,5 +37,5 @@ unic-langid = { version = "0.9.4", features = ["serde"] } uuid = { version = "1.7.0", features = ["serde", "v4", "v5"] } [dev-dependencies] -bevy = "0.19.0-rc.3" +bevy = "0.19.0" unic-langid = { version = "0.9.4", features = ["macros"] }