diff --git a/CHANGELOG.md b/CHANGELOG.md index 66b45dfe..1bb3f359 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +### Packaging notes + +- The VST3 dependency is now at tag `v3.7.5_build_44-patched-2`. The only + difference is that the version in the `meson.build` file was bumped from 3.7.3 + to 3.7.5. + ## [4.0.2] - 2022-06-27 ### Fixed diff --git a/README.md b/README.md index 93db8190..5a472b28 100644 --- a/README.md +++ b/README.md @@ -766,7 +766,7 @@ The following dependencies are included in the repository as a Meson wrap: - [function2](https://github.com/Naios/function2) - [`ghc::filesystem`](https://github.com/gulrak/filesystem) - [tomlplusplus](https://github.com/marzer/tomlplusplus) -- Version 3.7.3 of the [VST3 SDK](https://github.com/robbert-vdh/vst3sdk) with +- Version 3.7.5 of the [VST3 SDK](https://github.com/robbert-vdh/vst3sdk) with some [patches](https://github.com/robbert-vdh/yabridge/blob/master/tools/patch-vst3-sdk.sh) to allow Winelib compilation diff --git a/src/common/vst3/meson.build b/src/common/vst3/meson.build index bc16bcc8..4c3a1731 100644 --- a/src/common/vst3/meson.build +++ b/src/common/vst3/meson.build @@ -2,7 +2,7 @@ # subprojects. The only workaround is to only define only the necessary # variables there, and to then assemble the dependencies here ourselves. -vst3 = subproject('vst3', version : '3.7.3') +vst3 = subproject('vst3', version : '3.7.5') # Also include our normal compiler options so symbols are hidden by default vst3_compiler_options = compiler_options + vst3.get_variable('compiler_options') diff --git a/subprojects/vst3.wrap b/subprojects/vst3.wrap index d12086ef..82aa0f59 100644 --- a/subprojects/vst3.wrap +++ b/subprojects/vst3.wrap @@ -2,6 +2,6 @@ url = https://github.com/robbert-vdh/vst3sdk.git # This is VST3 SDK v3.7.5_build_44 with the documentation and VSTGUI submodules # removed and a dummy `meson.build` file that just lists all source files -revision = v3.7.5_build_44-patched +revision = v3.7.5_build_44-patched-2 clone-recursive = true depth = 1