diff options
author | David Robillard <d@drobilla.net> | 2020-03-22 21:52:34 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-04-10 19:46:04 +0200 |
commit | 0eae1e9ec862b84f74ed3c54bad3e75219ad3584 (patch) | |
tree | e0098614068b818ae45f2983b53756be214a2f0e /lv2 | |
parent | 55f8ee266cd705a5abfdaf80e96427dd84350240 (diff) | |
download | lv2-0eae1e9ec862b84f74ed3c54bad3e75219ad3584.tar.xz |
Fix incorrect type of patch:sequenceNumber
Diffstat (limited to 'lv2')
-rw-r--r-- | lv2/patch/manifest.ttl | 2 | ||||
-rw-r--r-- | lv2/patch/patch.meta.ttl | 9 | ||||
-rw-r--r-- | lv2/patch/patch.ttl | 2 |
3 files changed, 11 insertions, 2 deletions
diff --git a/lv2/patch/manifest.ttl b/lv2/patch/manifest.ttl index b42d389..5125155 100644 --- a/lv2/patch/manifest.ttl +++ b/lv2/patch/manifest.ttl @@ -4,6 +4,6 @@ <http://lv2plug.in/ns/ext/patch> a lv2:Specification ; lv2:minorVersion 2 ; - lv2:microVersion 6 ; + lv2:microVersion 7 ; rdfs:seeAlso <patch.ttl> . diff --git a/lv2/patch/patch.meta.ttl b/lv2/patch/patch.meta.ttl index bdc2568..d6a6422 100644 --- a/lv2/patch/patch.meta.ttl +++ b/lv2/patch/patch.meta.ttl @@ -13,6 +13,15 @@ doap:name "LV2 Patch" ; doap:shortdesc "A protocol for accessing and manipulating properties." ; doap:release [ + doap:revision "2.7" ; + doap:created "2019-03-22" ; + dcs:blame <http://drobilla.net/drobilla#me> ; + dcs:changeset [ + dcs:item [ + rdfs:label "Fix incorrect type of patch:sequenceNumber." + ] + ] + ] , [ doap:revision "2.6" ; doap:created "2019-02-03" ; doap:file-release <http://lv2plug.in/spec/lv2-1.16.0.tar.bz2> ; diff --git a/lv2/patch/patch.ttl b/lv2/patch/patch.ttl index e8fe8c6..7804009 100644 --- a/lv2/patch/patch.ttl +++ b/lv2/patch/patch.ttl @@ -214,7 +214,7 @@ patch:request patch:sequenceNumber a rdf:Property , - owl:ObjectProperty , + owl:DatatypeProperty , owl:FunctionalProperty ; rdfs:label "sequence number" ; rdfs:domain patch:Message ; |