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__)