This repository was archived by the owner on Feb 7, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111 run_tests :
1212 strategy :
1313 matrix :
14- os : [windows-2019 , windows-2022 ]
14+ os : [windows-2022 , windows-2025 ]
1515 include :
16- - os : windows-2019
17- generator : " Visual Studio 16 2019"
18- - os : windows-2022
19- generator : " Visual Studio 17 2022"
16+ - generator : " Visual Studio 17 2022"
2017
2118 runs-on : ${{ matrix.os }}
2219
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ Check the [Quickstart](https://jamba.dev/quickstart/) section to getting started
4747Latest Release
4848--------------
4949
50- 7.2.0 | 2025-03-01 | VST SDK 3.7.13+
50+ 7.2.1 | 2025-06-06 | VST SDK 3.7.13+
5151
5252[ Release notes (local)] ( RELEASE.md )
5353
Original file line number Diff line number Diff line change @@ -3,6 +3,12 @@ Release Notes {#release-notes}
33
44Check the [ Requirements] ( https://jamba.dev/requirements/ ) documentation for information about which VST3 SDK Jamba supports and how to get it.
55
6+ ## [ 7.2.1 | 2025-06-06] ( https://github.com/pongasoft/jamba/tree/v7.2.1 )
7+
8+ * Uses "Visual Studio 17 2022" by default on Windows when creating a new device
9+ (you can still use "Visual Studio 16 2019" via the ` -G ` option).
10+ Note that "Visual Studio 16 2019" is no longer automatically tested.
11+
612## [ 7.2.0 | 2025-03-01] ( https://github.com/pongasoft/jamba/tree/v7.2.0 )
713
814* Upgraded Jamba to use VST3 SDK 3.7.13 ([ release notes] ( https://steinbergmedia.github.io/vst3_dev_portal/pages/Versions/Version+3.7.13.html ) )
Original file line number Diff line number Diff line change 11{
2- "cmake.generator" : " Visual Studio 16 2019 "
2+ "cmake.generator" : " Visual Studio 17 2022 "
33}
Original file line number Diff line number Diff line change 3232Notes
3333 ---vst3 defaults to /Users/Shared/Steinberg/VST_SDK.<JAMBA_VST3SDK_VERSION>
3434
35- -G defaults to "Xcode" on macOS and "Visual Studio 16 2019 " for Windows10
35+ -G defaults to "Xcode" on macOS and "Visual Studio 17 2022 " for Windows10
3636 run 'cmake --help' to get the list of generators supported
3737
3838 For single-config generators, Debug is used by default and can be changed with -r for Release
7575 if platform .system () == 'Darwin' :
7676 cmake_generator .append ('Xcode' )
7777 else :
78- cmake_generator .append ('Visual Studio 16 2019 ' )
78+ cmake_generator .append ('Visual Studio 17 2022 ' )
7979
8080# CMake options
8181cmake_options = [] if not args .cmake_options else args .cmake_options [1 :]
Original file line number Diff line number Diff line change 3232Notes
3333 ---vst3 defaults to /Users/Shared/Steinberg/VST_SDK.<JAMBA_VST3SDK_VERSION>
3434
35- -G defaults to "Xcode" on macOS and "Visual Studio 16 2019 " for Windows10
35+ -G defaults to "Xcode" on macOS and "Visual Studio 17 2022 " for Windows10
3636 run 'cmake --help' to get the list of generators supported
3737
3838 For single-config generators, Debug is used by default and can be changed with -r for Release
7575 if platform .system () == 'Darwin' :
7676 cmake_generator .append ('Xcode' )
7777 else :
78- cmake_generator .append ('Visual Studio 16 2019 ' )
78+ cmake_generator .append ('Visual Studio 17 2022 ' )
7979
8080# CMake options
8181cmake_options = [] if not args .cmake_options else args .cmake_options [1 :]
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ endif()
4646#------------------------------------------------------------------------
4747set (JAMBA_MAJOR_VERSION 7)
4848set (JAMBA_MINOR_VERSION 2)
49- set (JAMBA_PATCH_VERSION 0 )
49+ set (JAMBA_PATCH_VERSION 1 )
5050execute_process (COMMAND git describe --long --dirty --abbrev=10 --tags
5151 RESULT_VARIABLE result
5252 OUTPUT_VARIABLE JAMBA_GIT_VERSION
You can’t perform that action at this time.
0 commit comments