Skip to content

Commit

Permalink
bump version to 1.5.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gewang committed Mar 19, 2024
1 parent ef51401 commit 09754dd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/core/chuck_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
// 1.5.0.0 (ge) | moved to chuck.h for at-a-glance visibility
// 1.5.2.0 (ge) | moved to chuck_def.h for chugins headers streamlining
//-----------------------------------------------------------------------------
#define CHUCK_VERSION_STRING "1.5.2.2-dev (chai)"
#define CHUCK_VERSION_STRING "1.5.2.2 (chai)"
//-----------------------------------------------------------------------------


Expand Down
7 changes: 4 additions & 3 deletions src/core/chuck_dl.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,11 @@
#include <map>


// major and minor must be the same between chuck:chugin
// major version: significant semantic and/or API update
// major API version: significant semantic and/or API update
// major API version must be the same between chuck:chugin
#define CK_DLL_VERSION_MAJOR (10)
// minor version: revisions
// minor API version: revisions
// minor API version of chuck must >= API version of chugin
#define CK_DLL_VERSION_MINOR (1)
#define CK_DLL_VERSION_MAKE(maj,min) ((t_CKUINT)(((maj) << 16) | (min)))
#define CK_DLL_VERSION_GETMAJOR(v) (((v) >> 16) & 0xFFFF)
Expand Down
2 changes: 1 addition & 1 deletion src/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ CK_HOST_DIR=host
# where to find RtAudio
RTAUDIO_DIR=RtAudio
# chuck version
CK_VERSION=1.5.2.2-dev
CK_VERSION=1.5.2.2


########################## DEFAULT MAKE TARGET ################################
Expand Down

0 comments on commit 09754dd

Please sign in to comment.