From 8c58d0994cd512263e34db1c8f45c1f1a9689a58 Mon Sep 17 00:00:00 2001 From: falkTX Date: Thu, 15 Sep 2022 00:55:00 +0100 Subject: [PATCH] Bump version to 2.5.1 Signed-off-by: falkTX --- Makefile | 2 +- source/backend/engine/CarlaEngineInternal.cpp | 2 +- source/frontend/carla_shared.py | 2 +- source/includes/CarlaDefines.h | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index fcfd5bb7b..54d96d699 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ MODULEDIR := $(CURDIR)/build/modules/Release endif # see also source/frontend/carla_shared.py and source/includes/CarlaDefines.h -VERSION := 2.5.0 +VERSION := 2.5.1 -include Makefile.user.mk diff --git a/source/backend/engine/CarlaEngineInternal.cpp b/source/backend/engine/CarlaEngineInternal.cpp index 7af29927a..05979eb26 100644 --- a/source/backend/engine/CarlaEngineInternal.cpp +++ b/source/backend/engine/CarlaEngineInternal.cpp @@ -622,7 +622,7 @@ void CarlaEngine::ProtectedData::doPluginRemove(const uint pluginId) noexcept const uint id = curPluginCount; // reset last plugin (now removed) - plugins[id].plugin = nullptr; + plugins[id].plugin.reset(); carla_zeroFloats(plugins[id].peaks, 4); } diff --git a/source/frontend/carla_shared.py b/source/frontend/carla_shared.py index 32fdade15..454bf09d9 100644 --- a/source/frontend/carla_shared.py +++ b/source/frontend/carla_shared.py @@ -71,7 +71,7 @@ if WINDOWS: # ------------------------------------------------------------------------------------------------------------ # Set Version -VERSION = "2.5.0" +VERSION = "2.5.1" # ------------------------------------------------------------------------------------------------------------ # Set TMP diff --git a/source/includes/CarlaDefines.h b/source/includes/CarlaDefines.h index 4f3fb9a9a..9d082f743 100644 --- a/source/includes/CarlaDefines.h +++ b/source/includes/CarlaDefines.h @@ -32,8 +32,8 @@ #endif /* Set Version */ -#define CARLA_VERSION_HEX 0x020500 -#define CARLA_VERSION_STRING "2.5.0" +#define CARLA_VERSION_HEX 0x020501 +#define CARLA_VERSION_STRING "2.5.1" #define CARLA_VERSION_STRMIN "2.5" /* Check OS */