diff --git a/Cargo.toml b/Cargo.toml index 88da737..fd40ff7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ name = "voxel-generation" required-features = ["generate_voxels"] [dependencies] -bevy = { version = "0.13.0", default-features = false, features = [ +bevy = { version = "0.14.0", default-features = false, features = [ "bevy_render", "bevy_asset", "bevy_pbr", @@ -47,7 +47,7 @@ thiserror = "1.0.50" serde = "1.0.193" [dev-dependencies] -bevy = "0.13.0" +bevy = "0.14.0" utilities = { path = "utilities" } rand = "0.8.5" async-std = { version = "1.12.0", features = ["attributes"] } diff --git a/README.md b/README.md index 2e0c075..6880c86 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Latest version](https://img.shields.io/crates/v/bevy_vox_scene.svg)](https://crates.io/crates/bevy_vox_scene) [![docs.rs](https://docs.rs/bevy_vox_scene/badge.svg)](https://docs.rs/bevy_vox_scene) [![CI](https://github.com/Utsira/bevy_vox_scene/actions/workflows/ci.yml/badge.svg)](https://github.com/Utsira/bevy_vox_scene/actions/workflows/ci.yml) -[![dependency status](https://deps.rs/crate/bevy_vox_scene/0.13.0/status.svg)](https://deps.rs/crate/bevy_vox_scene/0.13.0) +[![dependency status](https://deps.rs/crate/bevy_vox_scene/0.14.0/status.svg)](https://deps.rs/crate/bevy_vox_scene/0.14.0) [![Bevy tracking](https://img.shields.io/badge/Bevy%20tracking-released%20version-lightblue)](https://bevyengine.org/learn/book/plugin-development/#main-branch-tracking) [![codecov](https://codecov.io/gh/Utsira/bevy_vox_scene/graph/badge.svg?token=29AR6PVOYP)](https://codecov.io/gh/Utsira/bevy_vox_scene) @@ -34,7 +34,7 @@ All Magica Voxel material types except "cloud" are supported. Bevy's screen spac ```toml [dependencies] -bevy_vox_scene = "0.13.0" +bevy_vox_scene = "0.14.0" ``` Then in code: @@ -78,6 +78,7 @@ cargo run --example | ------------ | -------------- | --- | | 0.12 | 0.99.6 | 0.9, 0.10, 0.11, 0.12 | | 0.13 | | 0.13 | +| 0.14 | | 0.14 | ## Limitations and workarounds diff --git a/examples/modify-scene.rs b/examples/modify-scene.rs index 28e574d..38ebd80 100644 --- a/examples/modify-scene.rs +++ b/examples/modify-scene.rs @@ -126,7 +126,7 @@ fn swim_fish(mut query: Query<(&mut Transform, &Fish)>, time: Res