commit af1e05ce6487151c6b36003fdb47566dbb50194e
parent 9ef394a67f1943c3888c6af52dd3ab787423123e
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date: Thu, 21 Jul 2022 14:33:59 +0200
Version 1.1.1
Diffstat:
3 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/ChangeLog.md b/ChangeLog.md
@@ -1,3 +1,7 @@
+# Changes in 1.1.1
+
+* [clap.h](include/clap/clap.h): missing include for [state-context.h](include/clap/ext/draft/state-context.h).
+
# Changes in 1.1.0
* [state-context.h](include/clap/ext/draft/state-context.h): save/load state for duplicate or preset.
diff --git a/include/clap/clap.h b/include/clap/clap.h
@@ -57,6 +57,7 @@
#include "ext/draft/midi-mappings.h"
#include "ext/draft/preset-load.h"
#include "ext/draft/quick-controls.h"
+#include "ext/draft/state-context.h"
#include "ext/draft/surround.h"
#include "ext/draft/track-info.h"
#include "ext/draft/tuning.h"
diff --git a/include/clap/version.h b/include/clap/version.h
@@ -22,7 +22,7 @@ typedef struct clap_version {
#define CLAP_VERSION_MAJOR ((uint32_t)1)
#define CLAP_VERSION_MINOR ((uint32_t)1)
-#define CLAP_VERSION_REVISION ((uint32_t)0)
+#define CLAP_VERSION_REVISION ((uint32_t)1)
#define CLAP_VERSION_INIT {CLAP_VERSION_MAJOR, CLAP_VERSION_MINOR, CLAP_VERSION_REVISION}
static const CLAP_CONSTEXPR clap_version_t CLAP_VERSION = CLAP_VERSION_INIT;