Skip to content

Commit

Permalink
Update Bevy version requirement to 0.14 (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnmaita authored Aug 12, 2024
1 parent 96d2ca2 commit d6191bf
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,9 +1,9 @@
[package]
name = "trve_bevy_font"
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_text"] }
bevy = { version = "0.14", default-features = false, features = ["bevy_text"] }
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_font = { git = "https://github.com/mnmaita/trve_bevy_font" }
Remember you can also target tags, commits and branches with this method:

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

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

| trve_bevy_font | 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_font_assets_load_state(
}
} else if let Some(font_folder_handle) = font_folder_handle {
*font_load_state = asset_server
.recursive_dependency_load_state(font_folder_handle.clone())
.recursive_dependency_load_state(&font_folder_handle.0)
.into()
}
}
Expand Down

0 comments on commit d6191bf

Please sign in to comment.