diff options
author | David Robillard <d@drobilla.net> | 2010-02-02 00:18:19 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-02-02 00:18:19 +0000 |
commit | 9b585b48d826ba0e035a73cb5e9673c975c04821 (patch) | |
tree | 03e2bc99fc89eefd2c72b0fd78befacffd4b9d6f /wscript | |
parent | ae780b14c88cbbfab06a11ae7213a713eac89959 (diff) | |
download | raul-9b585b48d826ba0e035a73cb5e9673c975c04821.tar.gz raul-9b585b48d826ba0e035a73cb5e9673c975c04821.tar.bz2 raul-9b585b48d826ba0e035a73cb5e9673c975c04821.zip |
Make sizeof(Raul::Atom) the size of a pointer.
Accomplished by wrapping up blob stuff in a separately allocated object so all Atoms don't pay the size penalty.
Bump version to 0.6.2 and ABI version to 5,0,0.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2403 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -4,7 +4,7 @@ import Options import os # Version of this package (even if built as a child) -RAUL_VERSION = '0.6.1' +RAUL_VERSION = '0.6.2' # Library version (UNIX style major, minor, micro) # major increment <=> incompatible changes @@ -16,7 +16,8 @@ RAUL_VERSION = '0.6.1' # 0.5.1 = 2,0,0 # 0.6.0 = 3,0,0 # 0.6.1 = 4,0,0 (unreleased) -RAUL_LIB_VERSION = '4.0.0' +# 0.6.2 = 5,0,0 (unreleased) +RAUL_LIB_VERSION = '5.0.0' # Variables for 'waf dist' APPNAME = 'raul' |