@@ -23,7 +23,7 @@ MODULEDIR := $(CURDIR)/build/modules/Release | |||||
endif | endif | ||||
# see also source/frontend/carla_shared.py and source/includes/CarlaDefines.h | # see also source/frontend/carla_shared.py and source/includes/CarlaDefines.h | ||||
VERSION := 2.5.0 | |||||
VERSION := 2.5.1 | |||||
-include Makefile.user.mk | -include Makefile.user.mk | ||||
@@ -622,7 +622,7 @@ void CarlaEngine::ProtectedData::doPluginRemove(const uint pluginId) noexcept | |||||
const uint id = curPluginCount; | const uint id = curPluginCount; | ||||
// reset last plugin (now removed) | // reset last plugin (now removed) | ||||
plugins[id].plugin = nullptr; | |||||
plugins[id].plugin.reset(); | |||||
carla_zeroFloats(plugins[id].peaks, 4); | carla_zeroFloats(plugins[id].peaks, 4); | ||||
} | } | ||||
@@ -71,7 +71,7 @@ if WINDOWS: | |||||
# ------------------------------------------------------------------------------------------------------------ | # ------------------------------------------------------------------------------------------------------------ | ||||
# Set Version | # Set Version | ||||
VERSION = "2.5.0" | |||||
VERSION = "2.5.1" | |||||
# ------------------------------------------------------------------------------------------------------------ | # ------------------------------------------------------------------------------------------------------------ | ||||
# Set TMP | # Set TMP | ||||
@@ -32,8 +32,8 @@ | |||||
#endif | #endif | ||||
/* Set Version */ | /* 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" | #define CARLA_VERSION_STRMIN "2.5" | ||||
/* Check OS */ | /* Check OS */ | ||||