Skip to content

Commit

Permalink
19.07
Browse files Browse the repository at this point in the history
  • Loading branch information
flibitijibibo committed Jul 1, 2019
1 parent 6de5c86 commit cbd6ea4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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 "06")
SET(LIB_REVISION "07")
SET(LIB_VERSION "${LIB_MAJOR_VERSION}.${LIB_MINOR_VERSION}.${LIB_REVISION}")

# Build Type
Expand Down
4 changes: 2 additions & 2 deletions csharp/FAudio.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ private static byte[] UTF8_ToNative(string s)

public const uint FAUDIO_ABI_VERSION = 0;
public const uint FAUDIO_MAJOR_VERSION = 19;
public const uint FAUDIO_MINOR_VERSION = 06;
public const uint FAUDIO_PATCH_VERSION = 07;
public const uint FAUDIO_MINOR_VERSION = 07;
public const uint FAUDIO_PATCH_VERSION = 00;

public const uint FAUDIO_COMPILED_VERSION = (
(FAUDIO_ABI_VERSION * 100 * 100 * 100) +
Expand Down
4 changes: 2 additions & 2 deletions include/FAudio.h
Original file line number Diff line number Diff line change
Expand Up @@ -466,8 +466,8 @@ extern FAudioGUID DATAFORMAT_SUBTYPE_IEEE_FLOAT;

#define FAUDIO_ABI_VERSION 0
#define FAUDIO_MAJOR_VERSION 19
#define FAUDIO_MINOR_VERSION 06
#define FAUDIO_PATCH_VERSION 07
#define FAUDIO_MINOR_VERSION 07
#define FAUDIO_PATCH_VERSION 00

#define FAUDIO_COMPILED_VERSION ( \
(FAUDIO_ABI_VERSION * 100 * 100 * 100) + \
Expand Down

0 comments on commit cbd6ea4

Please sign in to comment.