diff options
author | David Robillard <d@drobilla.net> | 2017-01-04 12:32:36 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-01-04 12:32:36 -0500 |
commit | a316948f61bb884fa99acec2e66e6033930ea691 (patch) | |
tree | 3fe5285a5dbb8738e46757f50a81fcb6e653dd16 | |
parent | 2c3af7ae2e0879a924728587f076cf6c67eb52ed (diff) | |
download | jalv-a316948f61bb884fa99acec2e66e6033930ea691.tar.gz jalv-a316948f61bb884fa99acec2e66e6033930ea691.tar.bz2 jalv-a316948f61bb884fa99acec2e66e6033930ea691.zip |
Jalv 0.6.0v1.6.0
-rw-r--r-- | COPYING | 2 | ||||
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | wscript | 6 |
3 files changed, 6 insertions, 6 deletions
@@ -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 @@ -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; @@ -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) |