diff options
author | David Robillard <d@drobilla.net> | 2016-03-15 23:21:34 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-12-14 20:00:26 -0500 |
commit | 7594722a6145db5caf422638c875673b558ff4db (patch) | |
tree | 5e6f0138c4ae93f7501c71c56843da6dfe11d9ed /wscript | |
parent | 2436c4cb8c3e88806a24af7dfa1b55370ec06b38 (diff) | |
download | serd-7594722a6145db5caf422638c875673b558ff4db.tar.gz serd-7594722a6145db5caf422638c875673b558ff4db.tar.bz2 serd-7594722a6145db5caf422638c875673b558ff4db.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
@@ -12,8 +12,8 @@ from waflib.extras import autowaf # major increment <=> incompatible changes # minor increment <=> compatible changes (additions) # micro increment <=> no interface changes -SERD_VERSION = '0.30.3' -SERD_MAJOR_VERSION = '0' +SERD_VERSION = '1.0.0' +SERD_MAJOR_VERSION = '1' # Mandatory waf variables APPNAME = 'serd' # Package name for waf dist |