diff --git a/CHANGELOG.md b/CHANGELOG.md index f7c8ccea..eae80dac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Version History +## Version 0.41.1 (2024-01-11) + +- Unified panic messages to format ` - ` +- Unified README.md and crate level docs +- Fix: minimize floating point errors in AudioBufferSourceNode currentTime calculation +- Fix: AudioParam automationRate does not instantly update on the control thread +- Fix: AudioParam better handling of non finite values in arguments +- Fix: Panic at Analiser initialization for some combinations of min/maxDecibel + ## Version 0.41.0 (2024-01-04) - Fix BaseAudioContext onChangeState to signal device readiness diff --git a/Cargo.toml b/Cargo.toml index 91b8aaee..25ac6b9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "web-audio-api" -version = "0.41.0" +version = "0.41.1" authors = ["Otto "] edition = "2021" description = "A pure Rust implementation of the Web Audio API, for use in non-browser contexts"