Skip to content

Commit

Permalink
v1.1.0: updated version and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ypujante committed Oct 6, 2018
1 parent 99b05b4 commit c0c212b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion jamba.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit c0c212b

Please sign in to comment.