aboutsummaryrefslogtreecommitdiffstats
path: root/core.lv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-03-19 04:15:51 +0000
committerDavid Robillard <d@drobilla.net>2011-03-19 04:15:51 +0000
commit616d7d7823e3841de615b62f49e34fd7b7bf6aec (patch)
treed058f4944c7575b3422a6dc71a9c1a0216c121d7 /core.lv2
parentbb18c9d288cb619bbe2ef0325b2e8104fb8b30db (diff)
downloadlv2-616d7d7823e3841de615b62f49e34fd7b7bf6aec.tar.xz
LV2Core 4.0.
Diffstat (limited to 'core.lv2')
-rw-r--r--core.lv2/ChangeLog5
-rw-r--r--core.lv2/lv2.ttl4
-rw-r--r--core.lv2/manifest.ttl4
-rw-r--r--core.lv2/wscript2
4 files changed, 8 insertions, 7 deletions
diff --git a/core.lv2/ChangeLog b/core.lv2/ChangeLog
index c5a91dd..9e04e76 100644
--- a/core.lv2/ChangeLog
+++ b/core.lv2/ChangeLog
@@ -1,8 +1,9 @@
-lv2core (UNRELEASED) unstable; urgency=low
+lv2core (4.0) unstable; urgency=medium
* Make doap:license suggested, but not required (for wrappers)
* Define lv2:binary (MUST be in manifest.ttl)
* Define lv2:majorVersion and lv2:minorVersion (MUST be in manifest.ttl)
+ * Define lv2:documentation and use it to document lv2core
* Add lv2:FunctionPlugin and lv2:ConstantPlugin classes
* Move lv2:AmplifierPlugin under lv2:DynamicsPlugin
* Loosen domain of lv2:optionalFeature and lv2:requiredFeature
@@ -14,7 +15,7 @@ lv2core (UNRELEASED) unstable; urgency=low
* Add lv2:enumeration port property.
* Define run() pre-roll special case (sample_count == 0).
- -- David Robillard <d@drobilla.net> UNRELEASED
+ -- David Robillard <d@drobilla.net> Fri, 18 Mar 2011 23:23:23 -0400
lv2core (3.0) unstable; urgency=low
diff --git a/core.lv2/lv2.ttl b/core.lv2/lv2.ttl
index 9e77ff3..0b9260c 100644
--- a/core.lv2/lv2.ttl
+++ b/core.lv2/lv2.ttl
@@ -74,8 +74,8 @@ devices). See <a href="http://www.w3.org/TR/xhtml-basic/#s_xhtmlmodules"
doap:shortdesc "An audio plugin interface specification" ;
doap:programming-language "C" ;
doap:release [
- doap:revision "3.2" ;
- doap:created "2011-03-17"
+ doap:revision "4.0" ;
+ doap:created "2011-03-18"
] ;
doap:maintainer [
a foaf:Person ;
diff --git a/core.lv2/manifest.ttl b/core.lv2/manifest.ttl
index 7a54d6a..e6e2ab1 100644
--- a/core.lv2/manifest.ttl
+++ b/core.lv2/manifest.ttl
@@ -5,6 +5,6 @@
<http://lv2plug.in/ns/lv2core>
a doap:Project , lv2:Specification , owl:Ontology ;
- lv2:minorVersion 3 ;
- lv2:microVersion 2 ;
+ lv2:minorVersion 4 ;
+ lv2:microVersion 0 ;
rdfs:seeAlso <lv2.ttl> .
diff --git a/core.lv2/wscript b/core.lv2/wscript
index 6356fe6..0b3eb1e 100644
--- a/core.lv2/wscript
+++ b/core.lv2/wscript
@@ -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)
-LV2CORE_VERSION = '3.2'
+LV2CORE_VERSION = '4.0'
# Variables for 'waf dist'
APPNAME = 'lv2core'