Skip to content

Commit

Permalink
Update to bevy 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasEi committed Nov 4, 2023
1 parent 2acc6b0 commit 06e1020
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog

## v0.18.0 - 04.11.2023
- Update to Bevy `0.12`

## v0.17.0
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_kira_audio"
version = "0.17.0"
version = "0.18.0"
authors = ["Niklas Eicker <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -22,7 +22,7 @@ wav = ["kira/wav"]
settings_loader = ["dep:ron", "dep:serde", "kira/serde"]

[dependencies]
bevy = { git = "https://github.com/bevyengine/bevy", default-features = false, features = ["bevy_asset"] }
bevy = { version = "0.12", default-features = false, features = ["bevy_asset"] }
anyhow = "1.0"
uuid = { version = "1", features = ["fast-rng"] }
kira = { version = "0.8", default-features = false, features = ["cpal"] }
Expand All @@ -32,7 +32,7 @@ parking_lot = "0.12"
thiserror = "1.0"

[dev-dependencies.bevy]
git = "https://github.com/bevyengine/bevy"
version = "0.12"
default-features = false
features = [
"bevy_asset",
Expand Down
2 changes: 1 addition & 1 deletion examples/multiple_channels.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ fn build_button_row<T: Component + Default + Clone>(
value: format!("Channel {}", 4 - channel_index),
style: TextStyle {
font_size: 20.0,
color: Color::rgb(0.2, 0.2, 0.2),
color: Color::rgb(0.9, 0.9, 0.9),
font: font.clone(),
},
}],
Expand Down

0 comments on commit 06e1020

Please sign in to comment.