From 0d003b96476af45102117c2bb958aeb59eb523cf Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sat, 15 Jan 2022 03:45:18 -0500 Subject: [PATCH] Bump version. Update changelog. --- CHANGELOG.md | 12 ++++++++++++ Core.json | 2 +- Makefile | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d27e8503..2b74aa49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ In this document, Ctrl means Cmd on Mac. +### 2.0.6 (2022-01-15) +- Add "Save a copy" to File menu. +- Remember CPU meter state across launches. +- Use audio device's suggested sample rate as initial sample rate. +- Add more logging of initialization/destruction of subsystems and module instantiation. +- Make MIDI input queue thread-safe, fixing probabilistic crash when processing MIDI input. +- Rack Pro + - Generate MIDI Start message in DAWs like Cubase that pre-roll transport. + - Generate MIDI Song Position Pointer messages when DAW is playing. + - Fix VST2 input/output channel labels being truncated in Ableton Live. + - Improve VST2 audio performance by avoiding unnecessary copying of buffers. + ### 2.0.5 (2022-01-01) - Swap order of parameter name and module name in MIDI-Map. - Parse all note names from c0 to b9 and accidentals like c# and cb in parameter entry field. diff --git a/Core.json b/Core.json index 96addb29..d2da503d 100644 --- a/Core.json +++ b/Core.json @@ -1,7 +1,7 @@ { "slug": "Core", "name": "VCV Core", - "version": "2.0.5", + "version": "2.0.6", "license": "GPL-3.0-or-later", "author": "VCV", "brand": "VCV", diff --git a/Makefile b/Makefile index c1dfccad..065bea3b 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ RACK_DIR ?= . VERSION_MAJOR := 2 # VERSION := 2.git.$(shell git rev-parse --short HEAD) -VERSION := 2.0.5 +VERSION := 2.0.6 FLAGS += -Iinclude -Idep/include