From 48529c196a8d76778b1b8e247a244ebb87f13948 Mon Sep 17 00:00:00 2001
From: John Mitchell <6656977+StarArawn@users.noreply.github.com>
Date: Sun, 30 Apr 2023 07:59:05 -0400
Subject: [PATCH] Release prep

---
 Cargo.toml                 | 18 +++++++++---------
 README.md                  |  7 +++++--
 book/src/chapter_1.md      |  2 +-
 kayak_font/Cargo.toml      |  2 +-
 kayak_ui_macros/Cargo.toml |  2 +-
 5 files changed, 17 insertions(+), 14 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index cb39aa3..02ab063 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.3.0"
+version = "0.4.0"
 edition = "2021"
 resolver = "2"
 authors = ["John Mitchell"]
@@ -17,21 +17,21 @@ members = ["kayak_ui_macros", "kayak_font"]
 
 [dependencies]
 bevy = { version = "0.10", default-features = false, features = ["bevy_render", "bevy_sprite", "bevy_asset", "bevy_winit", "bevy_core_pipeline", "bevy_ui"] }
+bevy_svg = { git = "https://github.com/StarArawn/bevy_svg", rev = "9a14eccf680b7fa98f6494fc10e8aaa5931de5c8", default-features = false }
+bitflags = "1.3.2"
 bytemuck = "1.12"
 dashmap = "5.4"
-kayak_font = { path = "./kayak_font", version = "0.3" }
-morphorm = "0.3"
-kayak_ui_macros = { path = "./kayak_ui_macros", version = "0.3" }
+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" }
 log = "0.4"
-bitflags = "1.3.2"
+morphorm = "0.3"
 reorder = "2.1"
 resources = "1.1"
-instant = "0.1"
-bevy_svg = { git = "https://github.com/StarArawn/bevy_svg", rev = "9a14eccf680b7fa98f6494fc10e8aaa5931de5c8", default-features = false }
-interpolation = { version = "0.2" }
 usvg = "0.27"
-fancy-regex = "0.11.0"
 uuid = { version = "1.3", features = ["v4"] }
 
 [dev-dependencies]
diff --git a/README.md b/README.md
index b4702e4..734a56d 100644
--- a/README.md
+++ b/README.md
@@ -36,6 +36,8 @@ Kayak UI is in the very early stages of development. Important features are miss
 - Fully integrated into bevy to capture input events, use bevy assets(images, etc).
 - Dpi Scaling
 - Batched Rendering
+- Opacity Layers
+- Custom Materials
 
 ## Missing features
 - More default widgets.
@@ -48,14 +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.3"
+kayak_ui = "0.4"
 bevy = "0.10"
 ```
 
 |bevy|kayak_ui|
 |---|---|
 |`main`|`bevy-track`|
-|0.10|0.3|
+|0.10.x|0.4|
+|0.10.x|0.3|
 |0.9|0.2|
 |0.9|0.1|
 
diff --git a/book/src/chapter_1.md b/book/src/chapter_1.md
index 44eee69..ab3ea63 100644
--- a/book/src/chapter_1.md
+++ b/book/src/chapter_1.md
@@ -2,7 +2,7 @@
 Kayak UI is quite easy to setup! First make sure you add it to your cargo.toml file in your project. 
 
 ```toml
-kayak_ui = "0.2"
+kayak_ui = "0.4"
 ```
 
 Once you've added Kayak UI to your bevy project you can now start to use it! In order for you to copy and run this in your own project don't forget to move the `roboto.kayak_font` and the `roboto.png` files to your asset folder. Optionally you can also generate your own font! See: [Chapter 5 - Fonts](./chapter_6.md)
diff --git a/kayak_font/Cargo.toml b/kayak_font/Cargo.toml
index effd523..721390f 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.3.0"
+version = "0.4.0"
 edition = "2021"
 resolver = "2"
 authors = ["John Mitchell"]
diff --git a/kayak_ui_macros/Cargo.toml b/kayak_ui_macros/Cargo.toml
index 3689da7..384a374 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.3.0"
+version = "0.4.0"
 edition = "2021"
 resolver = "2"
 authors = ["John Mitchell"]
-- 
GitLab