diff --git a/CHANGELOG.md b/CHANGELOG.md index 83b1e7c..14c8461 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## v0.21.0 - 30.11.2024 +- Update to Bevy `0.15` + ## v0.20.0 - 04.07.2024 - Update to Bevy `0.14` - Asset loaders are now public diff --git a/Cargo.toml b/Cargo.toml index 62ff8ad..0dc4444 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_kira_audio" -version = "0.20.0" +version = "0.21.0" authors = ["Niklas Eicker "] edition = "2021" license = "MIT OR Apache-2.0" @@ -22,9 +22,7 @@ wav = ["kira/wav"] settings_loader = ["dep:ron", "dep:serde", "kira/serde"] [dependencies] -bevy = { version = "0.14.0", default-features = false, features = [ - "bevy_asset", -] } +bevy = { version = "0.15.0", default-features = false, features = ["bevy_asset"] } anyhow = "1.0" uuid = { version = "1", features = ["fast-rng"] } kira = { version = "0.9", default-features = false, features = ["cpal"] } @@ -34,24 +32,41 @@ parking_lot = "0.12" thiserror = "1.0" [dev-dependencies.bevy] -version = "0.14.0" +version = "0.15.0" default-features = false +# default features minus "bevy_audio" and "vorbis" features = [ + "android-game-activity", + "animation", "bevy_asset", - "bevy_winit", - "bevy_render", - "x11", - "bevy_ui", - "bevy_text", + "bevy_color", "bevy_core_pipeline", - "bevy_sprite", + "bevy_gilrs", + "bevy_gizmos", "bevy_gltf", - "bevy_scene", + "bevy_mesh_picking_backend", "bevy_pbr", - "tonemapping_luts", - "ktx2", - "zstd", + "bevy_picking", + "bevy_render", + "bevy_scene", + "bevy_sprite", + "bevy_sprite_picking_backend", + "bevy_state", + "bevy_text", + "bevy_ui", + "bevy_ui_picking_backend", + "bevy_window", + "bevy_winit", + "custom_cursor", + "default_font", + "hdr", "multi_threaded", + "png", + "smaa_luts", + "sysinfo_plugin", + "tonemapping_luts", + "webgl2", + "x11", ] [[example]] diff --git a/examples/channel_control.rs b/examples/channel_control.rs index bf0cf8c..0308b38 100644 --- a/examples/channel_control.rs +++ b/examples/channel_control.rs @@ -27,7 +27,16 @@ fn channel_control(input: Res>, audio: Res