Skip to content
This repository was archived by the owner on Feb 7, 2026. It is now read-only.

Commit 9ea4e21

Browse files
committed
Uses "Visual Studio 17 2022" by default on Windows
- GitHub actions will no longer work with windows-2019
1 parent 105ac97 commit 9ea4e21

7 files changed

Lines changed: 15 additions & 12 deletions

File tree

.github/workflows/run-tests-windows-action.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,9 @@ jobs:
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Check the [Quickstart](https://jamba.dev/quickstart/) section to getting started
4747
Latest 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

RELEASE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ Release Notes {#release-notes}
33

44
Check 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))

blank-plugin/.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"cmake.generator": "Visual Studio 16 2019"
2+
"cmake.generator": "Visual Studio 17 2022"
33
}

blank-plugin/configure.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
Notes
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
@@ -75,7 +75,7 @@
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
8181
cmake_options = [] if not args.cmake_options else args.cmake_options[1:]

jamba-test-plugin/configure.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
Notes
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
@@ -75,7 +75,7 @@
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
8181
cmake_options = [] if not args.cmake_options else args.cmake_options[1:]

jamba.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ endif()
4646
#------------------------------------------------------------------------
4747
set(JAMBA_MAJOR_VERSION 7)
4848
set(JAMBA_MINOR_VERSION 2)
49-
set(JAMBA_PATCH_VERSION 0)
49+
set(JAMBA_PATCH_VERSION 1)
5050
execute_process(COMMAND git describe --long --dirty --abbrev=10 --tags
5151
RESULT_VARIABLE result
5252
OUTPUT_VARIABLE JAMBA_GIT_VERSION

0 commit comments

Comments
 (0)