Skip to content

Commit

Permalink
19.08
Browse files Browse the repository at this point in the history
  • Loading branch information
flibitijibibo committed Aug 1, 2019
1 parent 34e47a2 commit 2cc0ee5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions csharp/FAudio.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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) +
Expand Down
6 changes: 3 additions & 3 deletions include/FAudio.h
Original file line number Diff line number Diff line change
Expand Up @@ -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) + \
Expand Down

0 comments on commit 2cc0ee5

Please sign in to comment.