Skip to content

Commit 707114a

Browse files
committed
25.01
1 parent 33c9447 commit 707114a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ endif()
2929

3030
# Version
3131
SET(LIB_MAJOR_VERSION "0")
32-
SET(LIB_MINOR_VERSION "24")
33-
SET(LIB_REVISION "12")
32+
SET(LIB_MINOR_VERSION "25")
33+
SET(LIB_REVISION "01")
3434
SET(LIB_VERSION "${LIB_MAJOR_VERSION}.${LIB_MINOR_VERSION}.${LIB_REVISION}")
3535

3636
# Build Type

csharp/FAudio.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ private static int Utf8Size(string str)
7878
public const uint FAUDIO_TARGET_VERSION = 8;
7979

8080
public const uint FAUDIO_ABI_VERSION = 0;
81-
public const uint FAUDIO_MAJOR_VERSION = 24;
82-
public const uint FAUDIO_MINOR_VERSION = 12;
81+
public const uint FAUDIO_MAJOR_VERSION = 25;
82+
public const uint FAUDIO_MINOR_VERSION = 1;
8383
public const uint FAUDIO_PATCH_VERSION = 0;
8484

8585
public const uint FAUDIO_COMPILED_VERSION = (

include/FAudio.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -493,8 +493,8 @@ extern FAudioGUID DATAFORMAT_SUBTYPE_IEEE_FLOAT;
493493
#define FAUDIO_TARGET_VERSION 8 /* Targeting compatibility with XAudio 2.8 */
494494

495495
#define FAUDIO_ABI_VERSION 0
496-
#define FAUDIO_MAJOR_VERSION 24
497-
#define FAUDIO_MINOR_VERSION 12
496+
#define FAUDIO_MAJOR_VERSION 25
497+
#define FAUDIO_MINOR_VERSION 1
498498
#define FAUDIO_PATCH_VERSION 0
499499

500500
#define FAUDIO_COMPILED_VERSION ( \

0 commit comments

Comments
 (0)