From 1d3512c6b8e34213ff4d5e377ae349c26d7dc49f Mon Sep 17 00:00:00 2001 From: not-elm Date: Tue, 19 Aug 2025 13:12:42 +0900 Subject: [PATCH] update: version to 0.2.0-dev --- Cargo.lock | 9 +++++---- Cargo.toml | 7 ++++--- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f22e897..052ae8e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -548,10 +548,11 @@ dependencies = [ [[package]] name = "bevy_cef" -version = "0.1.0" +version = "0.2.0-dev" dependencies = [ "async-channel", "bevy", + "bevy_cef", "bevy_cef_core", "bevy_remote", "cef", @@ -563,7 +564,7 @@ dependencies = [ [[package]] name = "bevy_cef_core" -version = "0.1.0" +version = "0.2.0-dev" dependencies = [ "async-channel", "bevy", @@ -578,7 +579,7 @@ dependencies = [ [[package]] name = "bevy_cef_debug_render_process" -version = "0.1.0" +version = "0.2.0-dev" dependencies = [ "bevy_cef_core", "cef", @@ -2088,7 +2089,7 @@ checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" [[package]] name = "demo" -version = "0.1.0" +version = "0.2.0-dev" dependencies = [ "bevy", "bevy_cef", diff --git a/Cargo.toml b/Cargo.toml index f53fd29..b01d187 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ members = [ ] [workspace.package] -version = "0.1.0" +version = "0.2.0-dev" edition = "2024" license = "Apache-2.0 OR MIT" authors = ["notelm"] @@ -43,8 +43,8 @@ bevy = { version = "0.16", default-features = false, features = [ bevy_remote = "0.16" cef = { version = "139" } cef-dll-sys = { version = "139.0", features = ["sandbox"] } -bevy_cef = { path = "." , version = "0.1"} -bevy_cef_core = { path = "crates/bevy_cef_core", version = "0.1" } +bevy_cef = { path = "." , version = "0.2.0-dev" } +bevy_cef_core = { path = "crates/bevy_cef_core", version = "0.2.0-dev" } async-channel = { version = "2.5" } serde = { version = "1", features = ["derive"] } serde_json = { version = "1" } @@ -62,6 +62,7 @@ raw-window-handle = "0.6" [dev-dependencies] bevy = { workspace = true, default-features = true, features = ["file_watcher"]} +bevy_cef = { workspace = true, features = ["debug"] } [target.'cfg(target_os = "macos")'.dependencies] objc = { version = "0.2" }