Skip to content

Commit

Permalink
Bump Bevy to 0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Selene-Amanita committed Jul 4, 2024
1 parent a6748e7 commit 5a3d4d8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_basic_portals"
version = "0.6.0-dev"
version = "0.6.0"
edition = "2021"
categories = ["game-engines", "graphics", "rendering"]
keywords = ["bevy", "portal", "mirror", "gamedev"]
Expand All @@ -11,24 +11,24 @@ repository = "https://github.com/Selene-Amanita/bevy_basic_portals"
authors = ["Selene Amanita"]

[dependencies]
bevy_app = "0.14.0-rc.2"
bevy_asset = "0.14.0-rc.2"
bevy_color = "0.14.0-rc.2"
bevy_core_pipeline = "0.14.0-rc.2"
bevy_ecs = "0.14.0-rc.2"
bevy_hierarchy = "0.14.0-rc.2"
bevy_math = "0.14.0-rc.2"
bevy_pbr = "0.14.0-rc.2"
bevy_reflect = "0.14.0-rc.2" # Could potentially be under a feature?
bevy_render = "0.14.0-rc.2"
bevy_transform = "0.14.0-rc.2"
bevy_window = "0.14.0-rc.2"
bevy_app = "0.14"
bevy_asset = "0.14"
bevy_color = "0.14"
bevy_core_pipeline = "0.14"
bevy_ecs = "0.14"
bevy_hierarchy = "0.14"
bevy_math = "0.14"
bevy_pbr = "0.14"
bevy_reflect = "0.14" # Could potentially be under a feature?
bevy_render = "0.14"
bevy_transform = "0.14"
bevy_window = "0.14"
tracing = { version = "0.1", default-features = false, features = ["std"] } # From bevy_utils
# All of the above can be replaced by:
# bevy = { version = "0.14.0-rc.2", default-features = false, features = ["bevy_asset", "bevy_core_pipeline", "bevy_pbr", "bevy_render", ] }
# bevy = { version = "0.14", default-features = false, features = ["bevy_asset", "bevy_core_pipeline", "bevy_pbr", "bevy_render", ] }

[dev-dependencies]
bevy = { version = "0.14.0-rc.2", default-features = false, features = [
bevy = { version = "0.14", default-features = false, features = [
"bevy_asset",
"bevy_core_pipeline",
"bevy_pbr",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ if you want a bidirectional portal you can crate two portals manually
## Bevy versions
| Bevy version | Bevy Basic Portals recommended version |
|--------------|----------------------------------------|
| 0.14.0-rc2 | 0.6.0-dev (not released on crates.io) |
| 0.14.* | 0.6.0 |
| 0.13.* | 0.5.0 |
| 0.12.* | 0.4.0 |
| 0.11.1 | 0.3.0 |
Expand Down

0 comments on commit 5a3d4d8

Please sign in to comment.