Skip to content

Commit c0c212b

Browse files
committed
v1.1.0: updated version and release notes
1 parent 99b05b4 commit c0c212b

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ option(JAMBA_ENABLE_VST2 "Use VST2" ON)
77
option(JAMBA_ENABLE_AUDIO_UNIT "Enable Audio Unit" ON)
88

99
set(PLUGIN_MAJOR_VERSION 1)
10-
set(PLUGIN_MINOR_VERSION 0)
11-
set(PLUGIN_PATCH_VERSION 1)
10+
set(PLUGIN_MINOR_VERSION 1)
11+
set(PLUGIN_PATCH_VERSION 0)
1212
set(PLUGIN_VERSION "${PLUGIN_MAJOR_VERSION}.${PLUGIN_MINOR_VERSION}.${PLUGIN_PATCH_VERSION}")
1313

1414
project(JambaSampleGain)
1515

1616
# To disable download/update, you can set those 2 variables to local folders
17-
set(JAMBA_ROOT_DIR ../../pongasoft/jamba)
17+
#set(JAMBA_ROOT_DIR ../../pongasoft/jamba)
1818
#set(GOOGLETEST_ROOT_DIR ../../google/googletest)
1919

2020
include(jamba.cmake)

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,13 @@ Note: You can load the project directly in CLion (since CLion does not support t
189189
Release Notes
190190
-------------
191191

192+
### 2018-10-06 - `v1.1.0`
193+
* use latest version of Jamba (v2.1.0)
194+
* Generate Audio Unit (wrapper) plugin
195+
* Upgraded to cmake 3.12
196+
* Consolidated dev scripts into a single `jamba.sh` (resp `jamba.bat`) script
197+
* Uses `Xcode` as the cmake generator on macOS
198+
192199
### 2018-08-28 - `v1.0.1`
193200
* changed build-prod.bat to use scripts
194201

jamba.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if(JAMBA_ROOT_DIR)
88
endif()
99

1010
set(JAMBA_GIT_REPO "https://github.com/pongasoft/jamba" CACHE STRING "Jamba git repository url" FORCE)
11-
set(JAMBA_GIT_TAG v2.0.2 CACHE STRING "Jamba git tag" FORCE)
11+
set(JAMBA_GIT_TAG v2.1.0 CACHE STRING "Jamba git tag" FORCE)
1212

1313
FetchContent_Declare(jamba
1414
GIT_REPOSITORY ${JAMBA_GIT_REPO}

0 commit comments

Comments
 (0)