From 2cc0ee558a04e2ffef1d836b2b4e838161e31736 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Thu, 1 Aug 2019 09:56:34 -0400 Subject: [PATCH] 19.08 --- CMakeLists.txt | 2 +- csharp/FAudio.cs | 6 +++--- include/FAudio.h | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cf4e378a5..1d2580f00 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,7 +28,7 @@ endif() # Version SET(LIB_MAJOR_VERSION "0") SET(LIB_MINOR_VERSION "19") -SET(LIB_REVISION "07") +SET(LIB_REVISION "08") SET(LIB_VERSION "${LIB_MAJOR_VERSION}.${LIB_MINOR_VERSION}.${LIB_REVISION}") # Build Type diff --git a/csharp/FAudio.cs b/csharp/FAudio.cs index b2d9b2477..34fddcfe8 100644 --- a/csharp/FAudio.cs +++ b/csharp/FAudio.cs @@ -58,10 +58,10 @@ private static byte[] UTF8_ToNative(string s) public const uint FAUDIO_TARGET_VERSION = 8; - public const uint FAUDIO_ABI_VERSION = 0; + public const uint FAUDIO_ABI_VERSION = 0; public const uint FAUDIO_MAJOR_VERSION = 19; - public const uint FAUDIO_MINOR_VERSION = 07; - public const uint FAUDIO_PATCH_VERSION = 00; + public const uint FAUDIO_MINOR_VERSION = 8; + public const uint FAUDIO_PATCH_VERSION = 0; public const uint FAUDIO_COMPILED_VERSION = ( (FAUDIO_ABI_VERSION * 100 * 100 * 100) + diff --git a/include/FAudio.h b/include/FAudio.h index 7086a992c..47da37788 100644 --- a/include/FAudio.h +++ b/include/FAudio.h @@ -464,10 +464,10 @@ extern FAudioGUID DATAFORMAT_SUBTYPE_IEEE_FLOAT; #define FAUDIO_TARGET_VERSION 8 /* Targeting compatibility with XAudio 2.8 */ -#define FAUDIO_ABI_VERSION 0 +#define FAUDIO_ABI_VERSION 0 #define FAUDIO_MAJOR_VERSION 19 -#define FAUDIO_MINOR_VERSION 07 -#define FAUDIO_PATCH_VERSION 00 +#define FAUDIO_MINOR_VERSION 8 +#define FAUDIO_PATCH_VERSION 0 #define FAUDIO_COMPILED_VERSION ( \ (FAUDIO_ABI_VERSION * 100 * 100 * 100) + \