Skip to content

Commit

Permalink
prepare for 1.5.1.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gewang committed Oct 20, 2023
1 parent 35ad803 commit 342ae8e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions VERSIONS
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ ChucK VERSIONS log
statement and balances reference counts; previously there was
a chance that object refcount were not correctly released,
causing incorrect behavior including memory leaks.
examples (assuming foo() returns an Object of some kind):
`foo().bar;` or `foo(), foo()` (multi-expression stmt)
"dangling object references tracking and cleanup"
examples include (assumption: foo() returns an Object):
`foo().bar;` or `foo(), foo()` (multi-expression stmt) or
`while( foo().bar ) { ... }` (loop stmt) and many more.
- (fixed) incorrect reference count for certain usages of 'null'
where the expression was interpreted incorrectly as a
function call, e.g., obj == null
Expand Down
2 changes: 1 addition & 1 deletion src/core/chuck.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@

// ChucK version string -- retrieve using ChucK::version()
// 1.5.0.0 (ge) | moved here for at-a-glance visibility (e.g., for chugins)
#define CHUCK_VERSION_STRING "1.5.1.7-dev (chai)"
#define CHUCK_VERSION_STRING "1.5.1.7 (chai)"

// ChucK param names -- used in setParam(...) and getParam*(...)
#define CHUCK_PARAM_VERSION "VERSION"
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.1.7-dev
CK_VERSION=1.5.1.7


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

0 comments on commit 342ae8e

Please sign in to comment.