From f4478efc8ad8c6a7c782692d6cc8b8f6e783eedf Mon Sep 17 00:00:00 2001 From: Otto Date: Wed, 18 Sep 2024 08:49:57 +0200 Subject: [PATCH] Prep up v1.0.1 release --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49422ad0..67375175 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Version History +## Version 1.0.1 (2024-09-18) + +- AudioBufferSourceNode: handle reverse playback and looping +- AudioBufferSourceNode: handle sub-sample stop/duration times +- AudioBufferSourceNode: fix handling of out of bound offsets + ## Version 1.0.0 (2024-09-10) - Breaking: MediaRecorder constructor now requires options (e.g. mime type) diff --git a/Cargo.toml b/Cargo.toml index e854b853..6f3a4182 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "web-audio-api" -version = "1.0.0" +version = "1.0.1" authors = ["Otto "] edition = "2021" description = "A pure Rust implementation of the Web Audio API, for use in non-browser contexts"