diff options
author | David Robillard <d@drobilla.net> | 2016-03-15 23:21:34 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-12-30 17:55:13 -0500 |
commit | ee9f4956ac7437ab35f04d5e71bace000735d654 (patch) | |
tree | bfe3bbbf1b812e0f4ae6280717efa9760c873550 /wscript | |
parent | 6857f60e5211d534ecadefbef595fdadf7b1a791 (diff) | |
download | serd-ee9f4956ac7437ab35f04d5e71bace000735d654.tar.gz serd-ee9f4956ac7437ab35f04d5e71bace000735d654.tar.bz2 serd-ee9f4956ac7437ab35f04d5e71bace000735d654.zip |
Use SerdBuffer for mutable buffers
This avoids const violations from abusing SerdChunk as a mutable buffer
for string sinks.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,8 +10,8 @@ from waflib.extras import autowaf # major increment <=> incompatible changes # minor increment <=> compatible changes (additions) # micro increment <=> no interface changes -SERD_VERSION = '0.30.1' -SERD_MAJOR_VERSION = '0' +SERD_VERSION = '1.0.0' +SERD_MAJOR_VERSION = '1' # Mandatory waf variables APPNAME = 'serd' # Package name for waf dist |