aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--COPYING2
-rw-r--r--NEWS4
-rw-r--r--wscript6
3 files changed, 6 insertions, 6 deletions
diff --git a/COPYING b/COPYING
index 211c098..cf8477f 100644
--- a/COPYING
+++ b/COPYING
@@ -1,4 +1,4 @@
-Copyright 2011-2016 David Robillard <http://drobilla.net>
+Copyright 2011-2017 David Robillard <http://drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
diff --git a/NEWS b/NEWS
index f278793..a051d67 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-jalv (1.4.7) unstable;
+jalv (1.6.0) stable;
* Support CV ports if Jack metadata is enabled (patch from Hanspeter Portner)
* Fix unreliable UI state initialization (patch from Hanspeter Portner)
@@ -21,7 +21,7 @@ jalv (1.4.7) unstable;
* Use moc-qt4 if present for systems with multiple Qt versions
* Add Qt5 version
- -- David Robillard <d@drobilla.net> Wed, 05 Oct 2016 06:15:57 -0400
+ -- David Robillard <d@drobilla.net> Wed, 04 Jan 2017 12:24:58 -0500
jalv (1.4.6) stable;
diff --git a/wscript b/wscript
index 24ec9db..24f5a2b 100644
--- a/wscript
+++ b/wscript
@@ -5,7 +5,7 @@ from waflib.extras import autowaf as autowaf
import waflib.Options as Options
# Version of this package (even if built as a child)
-JALV_VERSION = '1.4.7'
+JALV_VERSION = '1.6.0'
# Variables for 'waf dist'
APPNAME = 'jalv'
@@ -52,7 +52,7 @@ def configure(conf):
autowaf.check_pkg(conf, 'lv2', atleast_version='1.14.0', uselib_store='LV2')
autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV',
- atleast_version='0.21.5', mandatory=True)
+ atleast_version='0.24.0', mandatory=True)
autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD',
atleast_version='0.14.0', mandatory=True)
autowaf.check_pkg(conf, 'sord-0', uselib_store='SORD',
@@ -60,7 +60,7 @@ def configure(conf):
autowaf.check_pkg(conf, 'suil-0', uselib_store='SUIL',
atleast_version='0.6.0', mandatory=True)
autowaf.check_pkg(conf, 'sratom-0', uselib_store='SRATOM',
- atleast_version='0.5.1', mandatory=True)
+ atleast_version='0.6.0', mandatory=True)
if Options.options.portaudio:
autowaf.check_pkg(conf, 'portaudio-2.0', uselib_store='PORTAUDIO',
atleast_version='2.0.0', mandatory=False)