Skip to content

Commit

Permalink
use latest version of Jamba (v6.0.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
ypujante committed May 30, 2022
1 parent c96598b commit d5ad892
Show file tree
Hide file tree
Showing 6 changed files with 639 additions and 79 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ include("${JAMBA_ROOT_DIR}/cmake/JambaSetArchitecture.cmake")

set(PLUGIN_MAJOR_VERSION 1)
set(PLUGIN_MINOR_VERSION 2)
set(PLUGIN_PATCH_VERSION 7)
set(PLUGIN_PATCH_VERSION 8)
set(PLUGIN_VERSION "${PLUGIN_MAJOR_VERSION}.${PLUGIN_MINOR_VERSION}.${PLUGIN_PATCH_VERSION}")

project("jamba-sample-gain")
project("jamba-sample-gain" VERSION "${PLUGIN_VERSION}")

# To use local googletest install, uncomment the following line (no download) and modify the path accordingly
set(GOOGLETEST_ROOT_DIR "")
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,9 @@ For windows, follow the same steps for macOS with the following changes:
Release Notes
-------------

### 2022-05-30 - `v1.2.8`
* use latest version of Jamba (v6.0.0)

### 2021-01-02 - `v1.2.7`
* use latest version of Jamba (v5.1.2)
* added support for Apple Silicon
Expand Down
2 changes: 1 addition & 1 deletion fetch_jamba.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ else()
endif()

set(JAMBA_GIT_REPO "https://github.com/pongasoft/jamba" CACHE STRING "Jamba git repository url" FORCE)
set(JAMBA_GIT_TAG v5.1.2 CACHE STRING "Jamba git tag" FORCE)
set(JAMBA_GIT_TAG v6.0.0 CACHE STRING "Jamba git tag" FORCE)

FetchContent_Declare(jamba
GIT_REPOSITORY ${JAMBA_GIT_REPO}
Expand Down
2 changes: 1 addition & 1 deletion mac/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<string>@MACOSX_BUNDLE_EXECUTABLE_NAME@</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
Expand Down
Loading

0 comments on commit d5ad892

Please sign in to comment.