diff --git a/Cargo.toml b/Cargo.toml index 4c8cdcb4..dabdad80 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kayak_ui" description = "A UI library built using the bevy game engine!" -version = "0.4.1" +version = "0.5.0" edition = "2021" resolver = "2" authors = ["John Mitchell"] @@ -25,8 +25,8 @@ fancy-regex = "0.11.0" indexmap = "1.9" instant = "0.1" interpolation = { version = "0.2" } -kayak_font = { path = "./kayak_font", version = "0.4" } -kayak_ui_macros = { path = "./kayak_ui_macros", version = "0.4" } +kayak_font = { path = "./kayak_font", version = "0.5" } +kayak_ui_macros = { path = "./kayak_ui_macros", version = "0.5" } log = "0.4" morphorm = "0.3" reorder = "2.1" diff --git a/README.md b/README.md index 0a81b0bb..88fb6d28 100644 --- a/README.md +++ b/README.md @@ -50,13 +50,15 @@ Kayak UI is in the very early stages of development. Important features are miss Use bevy `0.10`! Make sure the version of Kayak you are using uses the same version of bevy. ```rust -kayak_ui = "0.4" -bevy = "0.10" +kayak_ui = "0.5" +bevy = "0.12" ``` |bevy|kayak_ui| |---|---| |`main`|`bevy-track`| +|0.12|0.5| +|0.11.x|skipped| |0.10.x|0.4| |0.10.x|0.3| |0.9|0.2| diff --git a/kayak_font/Cargo.toml b/kayak_font/Cargo.toml index b80169fa..343ed16f 100644 --- a/kayak_font/Cargo.toml +++ b/kayak_font/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kayak_font" description = "An SDF font renderer for Kayak UI and the Bevy game engine" -version = "0.4.0" +version = "0.5.0" edition = "2021" resolver = "2" authors = ["John Mitchell"] diff --git a/kayak_ui_macros/Cargo.toml b/kayak_ui_macros/Cargo.toml index d009e0c0..b824497c 100644 --- a/kayak_ui_macros/Cargo.toml +++ b/kayak_ui_macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kayak_ui_macros" description = "A proc macro library that provides RSX like syntax for Kayak UI." -version = "0.4.0" +version = "0.5.0" edition = "2021" resolver = "2" authors = ["John Mitchell"]