From 5aefe4bd7f0d8d913aabc3ee7464cb63775fb482 Mon Sep 17 00:00:00 2001 From: AlephCubed Date: Wed, 14 Jan 2026 14:07:22 -0800 Subject: [PATCH] `bevy_auto_plugin` v0.9.0 --- Cargo.lock | 19 +++++++++++-------- immediate_stats/Cargo.toml | 6 +++--- immediate_stats_macros/Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cf7ab36..284981c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -121,8 +121,9 @@ dependencies = [ [[package]] name = "bevy_auto_plugin" -version = "0.8.2" -source = "git+https://github.com/StrikeForceZero/bevy_auto_plugin#7e190259e5f08bcec8be577216f1e9cc3ed8a1db" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b00355e2dd268a7f9c7453773753edfedda475896c0b4e7b2d015aa04f4849fd" dependencies = [ "bevy_auto_plugin_proc_macros", "bevy_auto_plugin_shared", @@ -132,8 +133,9 @@ dependencies = [ [[package]] name = "bevy_auto_plugin_proc_macros" -version = "0.8.2" -source = "git+https://github.com/StrikeForceZero/bevy_auto_plugin#7e190259e5f08bcec8be577216f1e9cc3ed8a1db" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d85f2558b3a8f3d5e3e8df9debbff0665cad6c7c2bfde3537e7ff247fde3cd8f" dependencies = [ "bevy_auto_plugin_shared", "proc-macro2", @@ -141,8 +143,9 @@ dependencies = [ [[package]] name = "bevy_auto_plugin_shared" -version = "0.8.2" -source = "git+https://github.com/StrikeForceZero/bevy_auto_plugin#7e190259e5f08bcec8be577216f1e9cc3ed8a1db" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6d825af42f08348a7c2307f50aabde362e774dd906c274556bd6b71794c8476" dependencies = [ "bevy_app", "darling 0.21.3", @@ -788,7 +791,7 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" [[package]] name = "immediate_stats" -version = "0.4.0-rc.1" +version = "0.4.0" dependencies = [ "bevy", "bevy_app", @@ -800,7 +803,7 @@ dependencies = [ [[package]] name = "immediate_stats_macros" -version = "0.4.0-rc.1" +version = "0.4.0" dependencies = [ "darling 0.23.0", "proc-macro-error", diff --git a/immediate_stats/Cargo.toml b/immediate_stats/Cargo.toml index e1a6749..a8f1ad8 100644 --- a/immediate_stats/Cargo.toml +++ b/immediate_stats/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "immediate_stats" -version = "0.4.0-rc.1" +version = "0.4.0" edition = "2024" description = "Game stats that reset every frame, inspired by immediate mode GUI." categories = ["game-development", "data-structures"] @@ -30,12 +30,12 @@ bevy_auto_plugin = [ bevy_app = { version = "0.18", default-features = false, optional = true, features = [ "bevy_reflect", ] } -bevy_auto_plugin = { git = "https://github.com/StrikeForceZero/bevy_auto_plugin", optional = true } +bevy_auto_plugin = { version = "0.9", optional = true } bevy_ecs = { version = "0.18", default-features = false, optional = true, features = [ "bevy_reflect", ] } bevy_reflect = { version = "0.18", default-features = false, optional = true } -immediate_stats_macros = { path = "../immediate_stats_macros", version = "0.4.0-rc.1", default-features = false } +immediate_stats_macros = { path = "../immediate_stats_macros", version = "0.4.0", default-features = false } [dev-dependencies] bevy = { version = "0.18", default-features = false } diff --git a/immediate_stats_macros/Cargo.toml b/immediate_stats_macros/Cargo.toml index 9dd4070..c8ca10f 100644 --- a/immediate_stats_macros/Cargo.toml +++ b/immediate_stats_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "immediate_stats_macros" -version = "0.4.0-rc.1" +version = "0.4.0" edition = "2024" description = "Game stats that reset every frame, inspired by immediate mode GUI." categories = ["game-development", "data-structures"] -- 2.51.2