commit 3b9029b1af03b18d0c52696d812065fd7d4c42fd
parent e2ed9eb693658f2c19d9cfe61a104f47e48df7ff
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date: Mon, 2 Jan 2023 09:43:19 +0100
Update version and changelog
Diffstat:
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/ChangeLog.md b/ChangeLog.md
@@ -1,3 +1,9 @@
+# Changes in 1.1.7
+
+## Draft extensions
+
+* [preset-discovery.h](include/clap/preset-discovery.h): new extension which allows the host to index the plugin's preset which are stored on disk.
+
# Changes in 1.1.6
* [version.h](include/clap/version.h) `CLAP_VERSION_LT` was backwards (comparing current with arg
diff --git a/include/clap/version.h b/include/clap/version.h
@@ -22,7 +22,7 @@ typedef struct clap_version {
#define CLAP_VERSION_MAJOR 1
#define CLAP_VERSION_MINOR 1
-#define CLAP_VERSION_REVISION 6
+#define CLAP_VERSION_REVISION 7
#define CLAP_VERSION_INIT \
{ (uint32_t)CLAP_VERSION_MAJOR, (uint32_t)CLAP_VERSION_MINOR, (uint32_t)CLAP_VERSION_REVISION }