diff options
author | David Robillard <d@drobilla.net> | 2020-04-26 18:54:52 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-04-26 18:54:52 +0200 |
commit | 20f2351a859568ca87bf71ef48a9ec4441c156f3 (patch) | |
tree | f5e30cf8cfab9e65b2a73678e5c96ca5f199b8f0 | |
parent | ed9d0ccd9ee93588ed7db34cbe7c9ee9ed4bbe74 (diff) | |
download | lilv-20f2351a859568ca87bf71ef48a9ec4441c156f3.tar.gz lilv-20f2351a859568ca87bf71ef48a9ec4441c156f3.tar.bz2 lilv-20f2351a859568ca87bf71ef48a9ec4441c156f3.zip |
Lilv 0.24.8v0.24.8
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | wscript | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -lilv (0.24.7) unstable; +lilv (0.24.8) stable; * Allow passing strings for URIs in Python API when unambiguous * Fix cases where incorrect translation is used @@ -6,7 +6,7 @@ lilv (0.24.7) unstable; * Fix memory leak when dyn-manifest has no plugins (thanks Michael Fisher) * Implement state:freePath feature - -- David Robillard <d@drobilla.net> Sat, 18 Jan 2020 16:34:41 +0000 + -- David Robillard <d@drobilla.net> Sun, 26 Apr 2020 17:55:26 +0200 lilv (0.24.6) stable; @@ -12,7 +12,7 @@ from waflib.extras import autowaf # major increment <=> incompatible changes # minor increment <=> compatible changes (additions) # micro increment <=> no interface changes -LILV_VERSION = '0.24.7' +LILV_VERSION = '0.24.8' LILV_MAJOR_VERSION = '0' # Mandatory waf variables @@ -88,7 +88,7 @@ def configure(conf): if not conf.env.BUILD_SHARED and not conf.env.BUILD_STATIC: conf.fatal('Neither a shared nor a static build requested') - conf.check_pkg('lv2 >= 1.17.0', uselib_store='LV2') + conf.check_pkg('lv2 >= 1.18.0', uselib_store='LV2') conf.check_pkg('serd-0 >= 0.30.0', uselib_store='SERD') conf.check_pkg('sord-0 >= 0.14.0', uselib_store='SORD') conf.check_pkg('sratom-0 >= 0.4.0', uselib_store='SRATOM') |