diff options
-rw-r--r-- | lv2/lv2plug.in/ns/ext/urid/manifest.ttl | 2 | ||||
-rw-r--r-- | lv2/lv2plug.in/ns/ext/urid/urid.ttl | 11 | ||||
-rw-r--r-- | wscript | 2 |
3 files changed, 12 insertions, 3 deletions
diff --git a/lv2/lv2plug.in/ns/ext/urid/manifest.ttl b/lv2/lv2plug.in/ns/ext/urid/manifest.ttl index 514a05c..2fbc13a 100644 --- a/lv2/lv2plug.in/ns/ext/urid/manifest.ttl +++ b/lv2/lv2plug.in/ns/ext/urid/manifest.ttl @@ -4,5 +4,5 @@ <http://lv2plug.in/ns/ext/urid> a lv2:Specification ; lv2:minorVersion 1 ; - lv2:microVersion 2 ; + lv2:microVersion 3 ; rdfs:seeAlso <urid.ttl> . diff --git a/lv2/lv2plug.in/ns/ext/urid/urid.ttl b/lv2/lv2plug.in/ns/ext/urid/urid.ttl index 7fbd43a..03bf4f5 100644 --- a/lv2/lv2plug.in/ns/ext/urid/urid.ttl +++ b/lv2/lv2plug.in/ns/ext/urid/urid.ttl @@ -13,6 +13,15 @@ doap:name "LV2 URID" ; doap:shortdesc "Features for mapping URIs to and from integers." ; doap:release [ + doap:revision "1.3" ; + doap:created "2012-04-22" ; + dcs:blame <http://drobilla.net/drobilla#me> ; + dcs:changeset [ + dcs:item [ + rdfs:label "Fix typo in urid:unmap documentation." + ] + ] + ] , [ doap:revision "1.2" ; doap:created "2012-04-17" ; doap:file-release <http://lv2plug.in/spec/lv2-1.0.0.tar.bz2> ; @@ -66,6 +75,6 @@ urid:unmap lv2:documentation """ <p>A feature which is used to unmap URIs previously mapped to integers by urid:map. To support this feature, the host must pass an LV2_Feature to -LV2_Descriptor::instantiate() with URI LV2_URID__unmapl and data pointed to +LV2_Descriptor::instantiate() with URI LV2_URID__unmap and data pointed to an instance of LV2_URID_Unmap.</p> """ . @@ -14,7 +14,7 @@ import waflib.Scripting as Scripting # Variables for 'waf dist' APPNAME = 'lv2' -VERSION = '1.0.0' +VERSION = '1.0.1' # Mandatory variables top = '.' |