Skip to content

Commit 76fdcfe

Browse files
committed
v1.1.0: updated version and release notes
1 parent 54e4bc0 commit 76fdcfe

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 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)
10+
set(PLUGIN_MINOR_VERSION 1)
1111
set(PLUGIN_PATCH_VERSION 0)
1212
set(PLUGIN_VERSION "${PLUGIN_MAJOR_VERSION}.${PLUGIN_MINOR_VERSION}.${PLUGIN_PATCH_VERSION}")
1313

1414
project(VST_VAC6)
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 & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ VST2/3 VAC-6V - Volume Analyzer & Controller
33

44
This project started as a VST implementation of the VAC-6 rack extension. It is now the official latest version of this plugin under the new name VAC-6V (V stands for VST). You can check the [VAC-6V](https://pongasoft.com/vst/VAC-6V.html) documentation directly.
55

6-
Status for `master` (unreleased)
7-
--------------------------------
8-
* Extracted and use of [jamba](https://github.com/pongasoft/jamba) framework
6+
Release Notes
7+
-------------
98

10-
2018-07-15 - Status for tag `v1.0.0`
11-
------------------------------------
9+
### 2018-10-06 - `v1.1.0`
10+
* added Audio Unit support (macOS)
11+
* use of [Jamba](https://github.com/pongasoft/jamba) framework
12+
13+
### 2018-07-15 - `v1.0.0`
1214
* first public release / free / open source
1315

1416
Configuration and requirements

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)