diff --git a/CHANGELOG.md b/CHANGELOG.md index bcc8ed53..32a5a820 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ 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] +## [2.2.0] - 2020-12-11 ### Added @@ -35,8 +35,8 @@ Versioning](https://semver.org/spec/v2.0.0.html). - Fixed an issue where in certain situations Wine processes were left running after the host got forcefully terminated before it got a chance to tell the plugin to shut down. This could happen when using Kontakt in Bitwig, as Bitwig - sets a limit on the amount of time a plugin may take to close when closing - Bitwig, and Kontakt can take a while to shut down. + sets a limit on the amount of time a plugin is allowed to spend closing when + you close Bitwig, and Kontakt can take a while to shut down. - Fixed a potential crash or freeze when removing a lot of plugins from a plugin group at exactly the same time. diff --git a/README.md b/README.md index 0e9d2034..a36333a1 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Yabridge has been tested under the following VST hosts using Wine Staging 5.9: - Ardour 6.5 - Mixbus 6.0.702 - Qtractor 0.9.18 -- REAPER 6.15 +- REAPER 6.18 - Renoise 3.2.4 Please let me know if there are any issues with other VST hosts. diff --git a/meson.build b/meson.build index 783c6428..648911d6 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'yabridge', 'cpp', - version : '2.1.0', + version : '2.2.0', default_options : ['warning_level=3', 'cpp_std=c++2a', 'build.cpp_std=c++2a'], ) diff --git a/tools/yabridgectl/Cargo.lock b/tools/yabridgectl/Cargo.lock index 67c99761..e5babb91 100644 --- a/tools/yabridgectl/Cargo.lock +++ b/tools/yabridgectl/Cargo.lock @@ -707,7 +707,7 @@ checksum = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57" [[package]] name = "yabridgectl" -version = "2.1.0" +version = "2.2.0" dependencies = [ "aho-corasick", "anyhow", diff --git a/tools/yabridgectl/Cargo.toml b/tools/yabridgectl/Cargo.toml index f1f55e3e..7a92bf98 100644 --- a/tools/yabridgectl/Cargo.toml +++ b/tools/yabridgectl/Cargo.toml @@ -2,7 +2,7 @@ name = "yabridgectl" # This version is linked to yabridge's version for clarity's sake and because # there's not a lot going on here -version = "2.1.0" +version = "2.2.0" authors = ["Robbert van der Helm "] edition = "2018" description = "Optional utility to help set up yabridge"