diff --git a/Cargo.toml b/Cargo.toml index a372fac..70ce73e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "trve_bevy_font" -version = "0.1.0" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bevy = { version = "0.12", default-features = false, features = ["bevy_text"] } +bevy = { version = "0.13", default-features = false, features = ["bevy_text"] } diff --git a/README.md b/README.md index d5d9275..83823a5 100644 --- a/README.md +++ b/README.md @@ -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.1.0" } +trve_bevy_font = { git = "https://github.com/mnmaita/trve_bevy_font", tag = "v0.2.0" } ``` ```toml @@ -50,9 +50,9 @@ Certain platforms, like web, can't use `load_folder` to load assets so this libr ```rs app.insert_resource(FontAssetList::new( [ - "textures/bold.ttf", - "textures/italic.ttf", - "textures/thin.ttf", + "typography/bold.ttf", + "typography/italic.ttf", + "typography/thin.ttf", ] .into(), )); @@ -62,6 +62,7 @@ If you insert this Resource, `FontAssetFolder` will be ignored and the plugin wi ## Bevy version compatibility -|trve_bevy_font|bevy| -|---|---| -|0.1|0.12| +| trve_bevy_font | bevy | +| -------------- | ---- | +| 0.2 | 0.13 | +| 0.1 | 0.12 |