aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-22 22:48:59 +0000
committerDavid Robillard <d@drobilla.net>2012-04-22 22:48:59 +0000
commit135822dd47be1b8f11c751c019136b9c126d2180 (patch)
tree004bfbbfb310a52d36262fccf23aa52e13ec1139
parent4135e10cc6d86de065483b475fc9b4a7b7d75557 (diff)
downloadlv2-135822dd47be1b8f11c751c019136b9c126d2180.tar.xz
Fix typo in urid:unmap documentation.
-rw-r--r--lv2/lv2plug.in/ns/ext/urid/manifest.ttl2
-rw-r--r--lv2/lv2plug.in/ns/ext/urid/urid.ttl11
-rw-r--r--wscript2
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>
""" .
diff --git a/wscript b/wscript
index 1e2f422..811d979 100644
--- a/wscript
+++ b/wscript
@@ -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 = '.'