Skip to content

Commit

Permalink
Bump version to 0.14 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasEi committed Mar 3, 2023
1 parent 5ad3230 commit fbcf5c0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v0.14.0
- Limited support for spacial audio
- Add `Emitter` and `Receiver` components to spacial entities
- Audio volume and panning will be automatically changed
- New example [`spacial.rs`](examples/spacial.rs)
- Support for setting volume in Decibels ([#81](https://github.com/NiklasEi/bevy_kira_audio/issues/81))
- Reexport some used Kira types ([#73](https://github.com/NiklasEi/bevy_kira_audio/issues/73))

## v0.13.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_kira_audio"
version = "0.13.0"
version = "0.14.0"
authors = ["Niklas Eicker <hello@nikl.me>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ The main branch is compatible with the latest Bevy release.
Compatibility of `bevy_kira_audio` versions:
| `bevy_kira_audio` | `bevy` |
| :-- | :-- |
| `0.13` | `0.9` |
| `0.13` - `0.14` | `0.9` |
| `0.11` - `0.12` | `0.8` |
| `0.9` - `0.10` | `0.7` |
| `0.8` | `0.6` |
Expand Down
2 changes: 1 addition & 1 deletion src/channel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl Default for ChannelState {

impl ChannelState {
pub(crate) fn apply(&self, sound: &mut StaticSoundData) {
sound.settings.volume = self.volume.into();
sound.settings.volume = self.volume;
sound.settings.playback_rate = self.playback_rate.into();
sound.settings.panning = self.panning;
}
Expand Down

0 comments on commit fbcf5c0

Please sign in to comment.