From c0c212bad33a4b55649f50aa62accf23439ec73e Mon Sep 17 00:00:00 2001 From: Yan Pujante Date: Sat, 6 Oct 2018 11:35:35 -0700 Subject: [PATCH] v1.1.0: updated version and release notes --- CMakeLists.txt | 6 +++--- README.md | 7 +++++++ jamba.cmake | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0b1d9ed..5f76b9c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,14 +7,14 @@ option(JAMBA_ENABLE_VST2 "Use VST2" ON) option(JAMBA_ENABLE_AUDIO_UNIT "Enable Audio Unit" ON) set(PLUGIN_MAJOR_VERSION 1) -set(PLUGIN_MINOR_VERSION 0) -set(PLUGIN_PATCH_VERSION 1) +set(PLUGIN_MINOR_VERSION 1) +set(PLUGIN_PATCH_VERSION 0) set(PLUGIN_VERSION "${PLUGIN_MAJOR_VERSION}.${PLUGIN_MINOR_VERSION}.${PLUGIN_PATCH_VERSION}") project(JambaSampleGain) # To disable download/update, you can set those 2 variables to local folders -set(JAMBA_ROOT_DIR ../../pongasoft/jamba) +#set(JAMBA_ROOT_DIR ../../pongasoft/jamba) #set(GOOGLETEST_ROOT_DIR ../../google/googletest) include(jamba.cmake) diff --git a/README.md b/README.md index d5c98ff..0b26222 100644 --- a/README.md +++ b/README.md @@ -189,6 +189,13 @@ Note: You can load the project directly in CLion (since CLion does not support t Release Notes ------------- +### 2018-10-06 - `v1.1.0` +* use latest version of Jamba (v2.1.0) +* Generate Audio Unit (wrapper) plugin +* Upgraded to cmake 3.12 +* Consolidated dev scripts into a single `jamba.sh` (resp `jamba.bat`) script +* Uses `Xcode` as the cmake generator on macOS + ### 2018-08-28 - `v1.0.1` * changed build-prod.bat to use scripts diff --git a/jamba.cmake b/jamba.cmake index 03cc6bf..0ae0edf 100644 --- a/jamba.cmake +++ b/jamba.cmake @@ -8,7 +8,7 @@ if(JAMBA_ROOT_DIR) endif() set(JAMBA_GIT_REPO "https://github.com/pongasoft/jamba" CACHE STRING "Jamba git repository url" FORCE) -set(JAMBA_GIT_TAG v2.0.2 CACHE STRING "Jamba git tag" FORCE) +set(JAMBA_GIT_TAG v2.1.0 CACHE STRING "Jamba git tag" FORCE) FetchContent_Declare(jamba GIT_REPOSITORY ${JAMBA_GIT_REPO}