Skip to content

Commit

Permalink
21.04
Browse files Browse the repository at this point in the history
  • Loading branch information
flibitijibibo committed Apr 1, 2021
1 parent 920d222 commit 398ca11
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 @@ -30,7 +30,7 @@ endif()
# Version
SET(LIB_MAJOR_VERSION "0")
SET(LIB_MINOR_VERSION "21")
SET(LIB_REVISION "03")
SET(LIB_REVISION "04")
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 @@ -79,8 +79,8 @@ private static int Utf8Size(string str)

public const uint FAUDIO_ABI_VERSION = 0;
public const uint FAUDIO_MAJOR_VERSION = 21;
public const uint FAUDIO_MINOR_VERSION = 3;
public const uint FAUDIO_PATCH_VERSION = 5;
public const uint FAUDIO_MINOR_VERSION = 4;
public const uint FAUDIO_PATCH_VERSION = 0;

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 @@ -485,8 +485,8 @@ extern FAudioGUID DATAFORMAT_SUBTYPE_IEEE_FLOAT;

#define FAUDIO_ABI_VERSION 0
#define FAUDIO_MAJOR_VERSION 21
#define FAUDIO_MINOR_VERSION 3
#define FAUDIO_PATCH_VERSION 5
#define FAUDIO_MINOR_VERSION 4
#define FAUDIO_PATCH_VERSION 0

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

0 comments on commit 398ca11

Please sign in to comment.