From b6b3fbfb555c8f0ea927b88b0da3331249a244fa Mon Sep 17 00:00:00 2001 From: David Reid Date: Sun, 12 Jun 2022 17:55:24 +1000 Subject: [PATCH] Update revision history and version number. --- CHANGES.md | 5 +++++ miniaudio.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 6c362a36..e0949000 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +v0.11.10 - TBD +===================== +* Add support for setting the device notification callback when initializing an engine object. + + v0.11.9 - 2022-04-20 ==================== * Fix some bugs where looping doesn't work with the resource manager. diff --git a/miniaudio.h b/miniaudio.h index 65224ed1..5a124d3f 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -1,6 +1,6 @@ /* Audio playback and capture library. Choice of public domain or MIT-0. See license statements at the end of this file. -miniaudio - v0.11.9 - 2022-04-20 +miniaudio - v0.11.10 - TBD David Reid - mackron@gmail.com @@ -3640,7 +3640,7 @@ extern "C" { #define MA_VERSION_MAJOR 0 #define MA_VERSION_MINOR 11 -#define MA_VERSION_REVISION 9 +#define MA_VERSION_REVISION 10 #define MA_VERSION_STRING MA_XSTRINGIFY(MA_VERSION_MAJOR) "." MA_XSTRINGIFY(MA_VERSION_MINOR) "." MA_XSTRINGIFY(MA_VERSION_REVISION) #if defined(_MSC_VER) && !defined(__clang__)