@@ -8,7 +8,7 @@ | |||||
# jucewrapper/CMakeLists.txt `project` | # jucewrapper/CMakeLists.txt `project` | ||||
# src/CardinalCommon.cpp `CARDINAL_VERSION` | # src/CardinalCommon.cpp `CARDINAL_VERSION` | ||||
# src/CardinalPlugin.cpp `getVersion` | # src/CardinalPlugin.cpp `getVersion` | ||||
VERSION = 22.12 | |||||
VERSION = 23.02 | |||||
# -------------------------------------------------------------- | # -------------------------------------------------------------- | ||||
# Import base definitions | # Import base definitions | ||||
@@ -1,5 +1,5 @@ | |||||
cmake_minimum_required(VERSION 3.15) | cmake_minimum_required(VERSION 3.15) | ||||
project(Cardinal VERSION 22.12) | |||||
project(Cardinal VERSION 23.02) | |||||
add_subdirectory(JUCE) | add_subdirectory(JUCE) | ||||
@@ -1,6 +1,6 @@ | |||||
/* | /* | ||||
* DISTRHO Cardinal Plugin | * DISTRHO Cardinal Plugin | ||||
* Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com> | |||||
* Copyright (C) 2021-2023 Filipe Coelho <falktx@falktx.com> | |||||
* | * | ||||
* This program is free software; you can redistribute it and/or | * This program is free software; you can redistribute it and/or | ||||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU General Public License as | ||||
@@ -98,7 +98,7 @@ void destroyStaticPlugins(); | |||||
} | } | ||||
} | } | ||||
const std::string CARDINAL_VERSION = "22.12"; | |||||
const std::string CARDINAL_VERSION = "23.02"; | |||||
START_NAMESPACE_DISTRHO | START_NAMESPACE_DISTRHO | ||||
@@ -1,6 +1,6 @@ | |||||
/* | /* | ||||
* DISTRHO Cardinal Plugin | * DISTRHO Cardinal Plugin | ||||
* Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com> | |||||
* Copyright (C) 2021-2023 Filipe Coelho <falktx@falktx.com> | |||||
* | * | ||||
* This program is free software; you can redistribute it and/or | * This program is free software; you can redistribute it and/or | ||||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU General Public License as | ||||
@@ -357,7 +357,7 @@ protected: | |||||
uint32_t getVersion() const override | uint32_t getVersion() const override | ||||
{ | { | ||||
return d_version(0, 22, 12); | |||||
return d_version(0, 23, 2); | |||||
} | } | ||||
int64_t getUniqueId() const override | int64_t getUniqueId() const override | ||||