diff --git a/CHANGELOG.md b/CHANGELOG.md index 2694d34f41..195158a9c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,10 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Entity-entity pushback is no longer applied in forced movement states like rolling and leaping. +- Updated audio library (rodio 0.13 -> 0.14). ### Removed ### Fixed +- Cases where no audio output could be produced before. ## [0.10.0] - 2021-06-12 diff --git a/Cargo.lock b/Cargo.lock index cff916f047..9733a92724 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4377,9 +4377,9 @@ dependencies = [ [[package]] name = "rodio" -version = "0.13.1" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b65c2eda643191f6d1bb12ea323a9db8d9ba95374e9be3780b5a9fb5cfb8520f" +checksum = "4d98f5e557b61525057e2bc142c8cd7f0e70d75dc32852309bec440e6e046bf9" dependencies = [ "cpal", "lewton", diff --git a/voxygen/Cargo.toml b/voxygen/Cargo.toml index b84a19dcb5..c322e6a1af 100644 --- a/voxygen/Cargo.toml +++ b/voxygen/Cargo.toml @@ -95,7 +95,7 @@ num = "0.4" ordered-float = { version = "2.0.1", default-features = false } rand = "0.8" rayon = "1.5" -rodio = {version = "0.13", default-features = false, features = ["vorbis"]} +rodio = {version = "0.14", default-features = false, features = ["vorbis"]} ron = {version = "0.6", default-features = false} serde = {version = "1.0", features = [ "rc", "derive" ]} strum = "0.20"