diff options
author | David Robillard <d@drobilla.net> | 2016-03-15 23:21:34 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-11-25 09:21:03 +0100 |
commit | f046eb982627f344fc0eeff6be82028318862e67 (patch) | |
tree | a8216165d6e74ff5650e4cdd5a2a44b05b611f63 /wscript | |
parent | fc6ef04d8b94909523708c1bdbb9ea8f42063662 (diff) | |
download | serd-f046eb982627f344fc0eeff6be82028318862e67.tar.gz serd-f046eb982627f344fc0eeff6be82028318862e67.tar.bz2 serd-f046eb982627f344fc0eeff6be82028318862e67.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 |