diff options
author | David Robillard <d@drobilla.net> | 2016-03-15 23:21:34 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-05-27 18:18:30 +0200 |
commit | 9b3d8263604ba11ae008c8651a1fe2063296d6b1 (patch) | |
tree | 9747d428f34f73e5d2e9e72bd8edef50b05ddad9 /wscript | |
parent | a0c483d9f1f3955499560ef1536fdb760df274fb (diff) | |
download | serd-9b3d8263604ba11ae008c8651a1fe2063296d6b1.tar.gz serd-9b3d8263604ba11ae008c8651a1fe2063296d6b1.tar.bz2 serd-9b3d8263604ba11ae008c8651a1fe2063296d6b1.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 @@ import waflib.extras.autowaf as autowaf # major increment <=> incompatible changes # minor increment <=> compatible changes (additions) # micro increment <=> no interface changes -SERD_VERSION = '0.29.2' -SERD_MAJOR_VERSION = '0' +SERD_VERSION = '1.0.0' +SERD_MAJOR_VERSION = '1' # Mandatory waf variables APPNAME = 'serd' # Package name for waf dist |