Skip to content

Commit

Permalink
Changes for final 0.15 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
ptsd committed Dec 31, 2024
1 parent c7b1ad3 commit 3fd2784
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions crates/blenvy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ license = "MIT OR Apache-2.0"
workspace = true

[dependencies]
bevy = { version = "0.15.0-rc.1", default-features = false, features = ["bevy_asset", "bevy_scene", "bevy_gltf", "animation"] }
bevy = { version = "0.15", default-features = false, features = ["bevy_asset", "bevy_scene", "bevy_gltf", "animation"] }
serde = "1.0.188"
ron = "0.8.1"
serde_json = "1.0.108"
bevy_common_assets = {version = "0.12.0-rc.1", features = ["ron"]}
bevy_common_assets = {version = "0.12", features = ["ron"]}


[dev-dependencies]
bevy = { version = "0.15.0-rc.1", default-features = false, features = ["dynamic_linking"] }
bevy = { version = "0.15", default-features = false, features = ["dynamic_linking"] }
2 changes: 1 addition & 1 deletion crates/blenvy/src/components/process_gltfs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use bevy::{
gltf::{GltfExtras, GltfMaterialExtras, GltfMeshExtras, GltfSceneExtras},
hierarchy::Parent,
log::{debug, warn},
reflect::{Reflect, PartialReflect, TypeRegistration},
reflect::{PartialReflect, TypeRegistration},
utils::HashMap,
};

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use bevy::log::{debug, warn};
use bevy::reflect::serde::ReflectDeserializer;
use bevy::reflect::{Reflect, PartialReflect, TypeRegistration, TypeRegistry};
use bevy::reflect::{PartialReflect, TypeRegistration, TypeRegistry};
use bevy::utils::HashMap;
use ron::Value;
use serde::de::DeserializeSeed;
Expand Down
2 changes: 1 addition & 1 deletion examples/animation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ edition = "2021"
license = "MIT OR Apache-2.0"

[dependencies]
bevy = { version = "0.15.0-rc.1", features = ["dynamic_linking"] }
bevy = { version = "0.15", features = ["dynamic_linking"] }
blenvy = { path = "../../crates/blenvy" }
rand = "0.8.5"
2 changes: 1 addition & 1 deletion examples/blueprints/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ edition = "2021"
license = "MIT OR Apache-2.0"

[dependencies]
bevy = { version = "0.15.0-rc.1", features = ["dynamic_linking"] }
bevy = { version = "0.15", features = ["dynamic_linking"] }
blenvy = { path = "../../crates/blenvy" }
rand = "0.8.5"
2 changes: 1 addition & 1 deletion examples/components/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition = "2021"
license = "MIT OR Apache-2.0"

[dependencies]
bevy = { version = "0.15.0-rc.1", features = ["dynamic_linking"] }
bevy = { version = "0.15", features = ["dynamic_linking"] }
blenvy = { path = "../../crates/blenvy" }
4 changes: 2 additions & 2 deletions examples/save_load/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ default = []
bevy-inspector = ["bevy-inspector-egui"]

[dependencies]
bevy = { version = "0.15.0-rc.1", features = ["dynamic_linking"] }
bevy = { version = "0.15", features = ["dynamic_linking"] }
blenvy = { path = "../../crates/blenvy" }

serde_json = "1.0.108"
serde = "1.0.193"
rand = "0.8.5"

bevy-inspector-egui = { version = "0.25.1", optional = true}
bevy-inspector-egui = { version = "0.28", optional = true}

[dev-dependencies]
#bevy-inspector-egui = { version = "0.25.1"}
2 changes: 1 addition & 1 deletion testing/bevy_example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"

[dependencies]
bevy = { version = "0.15.0-rc.1", features = ["dynamic_linking"] }
bevy = { version = "0.15", features = ["dynamic_linking"] }
blenvy = { path = "../../crates/blenvy" }
#bevy_editor_pls = { version = "0.8" }
rand = "0.8.5"
Expand Down

0 comments on commit 3fd2784

Please sign in to comment.