From 672feab1626d59f6c822262d029a8ef42f36af62 Mon Sep 17 00:00:00 2001 From: DaraJKong Date: Mon, 13 Oct 2025 18:02:53 -0400 Subject: [PATCH 1/4] Bump to Bevy 0.17.2 --- Cargo.toml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6c0bb95..ea0adb5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,16 +11,16 @@ documentation = "https://docs.rs/bevy_framepace" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bevy_app = { version = "0.17.0-rc", default-features = false } -bevy_ecs = { version = "0.17.0-rc", default-features = false } -bevy_diagnostic = { version = "0.17.0-rc", default-features = false } -bevy_log = { version = "0.17.0-rc", default-features = false } -bevy_render = { version = "0.17.0-rc", default-features = false } -bevy_reflect = { version = "0.17.0-rc", default-features = false } -bevy_time = { version = "0.17.0-rc", default-features = false } -bevy_platform = { version = "0.17.0-rc", default-features = false } -bevy_window = { version = "0.17.0-rc", default-features = false } -bevy_winit = { version = "0.17.0-rc", default-features = false } +bevy_app = { version = "0.17.2", default-features = false } +bevy_ecs = { version = "0.17.2", default-features = false } +bevy_diagnostic = { version = "0.17.2", default-features = false } +bevy_log = { version = "0.17.2", default-features = false } +bevy_render = { version = "0.17.2", default-features = false } +bevy_reflect = { version = "0.17.2", default-features = false } +bevy_time = { version = "0.17.2", default-features = false } +bevy_platform = { version = "0.17.2", default-features = false } +bevy_window = { version = "0.17.2", default-features = false } +bevy_winit = { version = "0.17.2", default-features = false } # Non-bevy spin_sleep = "1.0" @@ -33,7 +33,7 @@ default = ["framepace_debug"] framepace_debug = [] [dev-dependencies] -bevy = { version = "0.17.0-rc", default-features = false, features = [ +bevy = { version = "0.17.2", default-features = false, features = [ "bevy_color", "bevy_ui_render", "bevy_gizmos", From 17b0af722f6f1bd2f981cf2622d527b23983d3ed Mon Sep 17 00:00:00 2001 From: DaraJKong Date: Mon, 13 Oct 2025 20:29:57 -0400 Subject: [PATCH 2/4] Remove unnecessary type registration --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 1f46bd5..a9853ee 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -51,8 +51,6 @@ pub mod debug; pub struct FramepacePlugin; impl Plugin for FramepacePlugin { fn build(&self, app: &mut App) { - app.register_type::(); - let limit = FrametimeLimit::default(); let settings = FramepaceSettings::default(); let settings_proxy = FramepaceSettingsProxy::default(); From 0f36f72dd880ecb0611387036beafafb80e6f1a8 Mon Sep 17 00:00:00 2001 From: DaraJKong Date: Mon, 13 Oct 2025 20:31:40 -0400 Subject: [PATCH 3/4] Bump version to 0.20.1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ea0adb5..12d194a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_framepace" -version = "0.20.0-rc.1" +version = "0.20.1" edition = "2024" resolver = "2" description = "Frame pacing and frame limiting for Bevy" From f480de793a25fafc9526ca549b2eb207f4dc5ac7 Mon Sep 17 00:00:00 2001 From: DaraJKong Date: Mon, 13 Oct 2025 20:35:38 -0400 Subject: [PATCH 4/4] Add 0.20.1 in Bevy Version Support table --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8df7c4a..3ebecce 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,8 @@ I intend to track the `main` branch of Bevy. PRs supporting this are welcome! | bevy | bevy_framepace | | ---- | ------------------- | -| 0.17.0-rc | 0.20.0-rc | +| 0.17 | 0.20.1 | +| 0.17.0-rc | 0.20.0-rc | | 0.16 | 0.19 | | 0.15 | 0.18 | | 0.14 | 0.17 |