summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--bindings/python/conf.py4
-rw-r--r--bindings/python/lilv.py2
-rw-r--r--src/lilv_config.h4
-rw-r--r--wscript2
5 files changed, 12 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index cc64f4d..aa0f786 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+lilv (0.24.15) unstable;
+
+ * Fix fallback flock() detection on MacOS
+
+ -- David Robillard <d@drobilla.net> Fri, 17 Jun 2022 01:12:49 +0000
+
lilv (0.24.14) stable;
* Fix build issues with newer toolchains
diff --git a/bindings/python/conf.py b/bindings/python/conf.py
index 7db38f9..0810188 100644
--- a/bindings/python/conf.py
+++ b/bindings/python/conf.py
@@ -56,9 +56,9 @@ copyright = u'2016, David Robillard'
# built documents.
#
# The short X.Y version.
-version = '0.24.14'
+version = '0.24.15'
# The full version, including alpha/beta/rc tags.
-release = '0.24.14'
+release = '0.24.15'
# 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 252d8fc..edb7658 100644
--- a/bindings/python/lilv.py
+++ b/bindings/python/lilv.py
@@ -3,7 +3,7 @@
__author__ = "David Robillard"
__copyright__ = "Copyright 2016-2020 David Robillard"
__license__ = "ISC"
-__version__ = "0.24.14"
+__version__ = "0.24.15"
__maintainer__ = "David Robillard"
__email__ = "d@drobilla.net"
__status__ = "Production"
diff --git a/src/lilv_config.h b/src/lilv_config.h
index 314aa9a..66155ef 100644
--- a/src/lilv_config.h
+++ b/src/lilv_config.h
@@ -29,7 +29,7 @@
#define LILV_CONFIG_H
// Define version unconditionally so a warning will catch a mismatch
-#define LILV_VERSION "0.24.14"
+#define LILV_VERSION "0.24.15"
#if !defined(LILV_NO_DEFAULT_CONFIG)
@@ -53,7 +53,7 @@
// Classic UNIX: flock()
# ifndef HAVE_FLOCK
-# if defined(__unix__)
+# if defined(__unix__) || defined(__APPLE__)
# define HAVE_FLOCK
# endif
# endif
diff --git a/wscript b/wscript
index 796f0fa..13a0fbb 100644
--- a/wscript
+++ b/wscript
@@ -12,7 +12,7 @@ from waflib.extras import autowaf
# major increment <=> incompatible changes
# minor increment <=> compatible changes (additions)
# micro increment <=> no interface changes
-LILV_VERSION = '0.24.14'
+LILV_VERSION = '0.24.15'
LILV_MAJOR_VERSION = '0'
# Mandatory waf variables