Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumped version. #281

Merged
merged 4 commits into from
Feb 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand All @@ -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"
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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|
Expand Down
2 changes: 1 addition & 1 deletion kayak_font/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion kayak_ui_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
Loading