Skip to content

Commit

Permalink
Update Bevy version requirement to 0.14 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnmaita committed Aug 12, 2024
1 parent 1b6e3f6 commit be4a8ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "trve_bevy_image"
version = "0.2.0"
version = "0.3.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bevy = { version = "0.13", default-features = false, features = [
bevy = { version = "0.14", default-features = false, features = [
"bevy_asset",
"bevy_render",
] }
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ trve_bevy_image = { git = "https://github.com/mnmaita/trve_bevy_image" }
Remember you can also target tags, commits and branches with this method:

```toml
trve_bevy_image = { git = "https://github.com/mnmaita/trve_bevy_image", tag = "v0.2.0" }
trve_bevy_image = { git = "https://github.com/mnmaita/trve_bevy_image", tag = "v0.3.0" }
```

```toml
Expand Down Expand Up @@ -64,5 +64,6 @@ If you insert this Resource, `ImageAssetFolder` will be ignored and the plugin w

|trve_bevy_image|bevy|
|---|---|
|0.3|0.14|
|0.2|0.13|
|0.1|0.12|
2 changes: 1 addition & 1 deletion src/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ fn update_image_assets_load_state(
}
} else if let Some(image_folder_handle) = image_folder_handle {
*textures_load_state = asset_server
.recursive_dependency_load_state(image_folder_handle.clone())
.recursive_dependency_load_state(&image_folder_handle.0)
.into()
}
}
Expand Down

0 comments on commit be4a8ae

Please sign in to comment.