aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--wscript3
2 files changed, 8 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index ad5a2c1b..b4a0bbd1 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+serd (0.30.1) unstable;
+
+ * Fix GCC 4 build
+
+ -- David Robillard <d@drobilla.net> Mon, 23 Jul 2018 23:14:40 +0200
+
serd (0.30.0) stable;
* Upgrade to waf 2.0.9 and autowaf a328983
diff --git a/wscript b/wscript
index 59e0214a..2a368350 100644
--- a/wscript
+++ b/wscript
@@ -10,7 +10,7 @@ import waflib.extras.autowaf as autowaf
# major increment <=> incompatible changes
# minor increment <=> compatible changes (additions)
# micro increment <=> no interface changes
-SERD_VERSION = '0.30.0'
+SERD_VERSION = '0.30.1'
SERD_MAJOR_VERSION = '0'
# Mandatory waf variables
@@ -38,6 +38,7 @@ def configure(conf):
autowaf.display_header('Serd Configuration')
conf.load('compiler_c', cache=True)
conf.load('autowaf', cache=True)
+ autowaf.set_c_lang(conf, 'c99')
conf.env.update({
'BUILD_UTILS': not Options.options.no_utils,