Bump VST3 dependency version

This commit is contained in:
Robbert van der Helm 2022-08-22 18:37:47 +02:00
parent 432a6cd0bc
commit 36d2ca021b
4 changed files with 11 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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')

View File

@ -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