diff options
Diffstat (limited to 'bindings')
-rw-r--r-- | bindings/python/conf.py | 4 | ||||
-rw-r--r-- | bindings/python/lilv.py | 2 | ||||
-rw-r--r-- | bindings/test/bindings_test_plugin.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/bindings/python/conf.py b/bindings/python/conf.py index 52d514a..4fc0911 100644 --- a/bindings/python/conf.py +++ b/bindings/python/conf.py @@ -60,9 +60,9 @@ copyright = u'2016, David Robillard' # built documents. # # The short X.Y version. -version = '0.24.25' +version = '0.24.27' # The full version, including alpha/beta/rc tags. -release = '0.24.25' +release = '0.24.27' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/bindings/python/lilv.py b/bindings/python/lilv.py index 69f6e7d..100b3d1 100644 --- a/bindings/python/lilv.py +++ b/bindings/python/lilv.py @@ -6,7 +6,7 @@ __author__ = "David Robillard" __copyright__ = "Copyright 2016-2024 David Robillard" __license__ = "ISC" -__version__ = "0.24.25" +__version__ = "0.24.27" __maintainer__ = "David Robillard" __email__ = "d@drobilla.net" __status__ = "Production" diff --git a/bindings/test/bindings_test_plugin.c b/bindings/test/bindings_test_plugin.c index cdbdbb9..0397db4 100644 --- a/bindings/test/bindings_test_plugin.c +++ b/bindings/test/bindings_test_plugin.c @@ -174,7 +174,7 @@ static const LV2_Descriptor descriptor = {TEST_URI, The lv2_descriptor() function is the entry point to the plugin library. The host will load the library and call this function repeatedly with increasing indices to find all the plugins defined in the library. The index is not an - indentifier, the URI of the returned descriptor is used to determine the + identifier, the URI of the returned descriptor is used to determine the identify of the plugin. This method is in the ``discovery'' threading class, so no other functions |