Skip to content

Commit 902981d

Browse files
committed
22.10
1 parent 128a6f7 commit 902981d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ endif()
2929
# Version
3030
SET(LIB_MAJOR_VERSION "0")
3131
SET(LIB_MINOR_VERSION "22")
32-
SET(LIB_REVISION "09")
32+
SET(LIB_REVISION "10")
3333
SET(LIB_VERSION "${LIB_MAJOR_VERSION}.${LIB_MINOR_VERSION}.${LIB_REVISION}")
3434

3535
# Build Type

csharp/FAudio.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ private static int Utf8Size(string str)
7979

8080
public const uint FAUDIO_ABI_VERSION = 0;
8181
public const uint FAUDIO_MAJOR_VERSION = 22;
82-
public const uint FAUDIO_MINOR_VERSION = 9;
83-
public const uint FAUDIO_PATCH_VERSION = 1;
82+
public const uint FAUDIO_MINOR_VERSION = 10;
83+
public const uint FAUDIO_PATCH_VERSION = 0;
8484

8585
public const uint FAUDIO_COMPILED_VERSION = (
8686
(FAUDIO_ABI_VERSION * 100 * 100 * 100) +

include/FAudio.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -485,8 +485,8 @@ extern FAudioGUID DATAFORMAT_SUBTYPE_IEEE_FLOAT;
485485

486486
#define FAUDIO_ABI_VERSION 0
487487
#define FAUDIO_MAJOR_VERSION 22
488-
#define FAUDIO_MINOR_VERSION 9
489-
#define FAUDIO_PATCH_VERSION 1
488+
#define FAUDIO_MINOR_VERSION 10
489+
#define FAUDIO_PATCH_VERSION 0
490490

491491
#define FAUDIO_COMPILED_VERSION ( \
492492
(FAUDIO_ABI_VERSION * 100 * 100 * 100) + \

0 commit comments

Comments
 (0)