Browse Source

Bump version

Signed-off-by: falkTX <falktx@falktx.com>
tags/23.02
falkTX 2 years ago
parent
commit
605cb05604
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
4 changed files with 6 additions and 6 deletions
  1. +1
    -1
      Makefile
  2. +1
    -1
      jucewrapper/CMakeLists.txt
  3. +2
    -2
      src/CardinalCommon.cpp
  4. +2
    -2
      src/CardinalPlugin.cpp

+ 1
- 1
Makefile View File

@@ -8,7 +8,7 @@
# jucewrapper/CMakeLists.txt `project`
# src/CardinalCommon.cpp `CARDINAL_VERSION`
# src/CardinalPlugin.cpp `getVersion`
VERSION = 22.12
VERSION = 23.02

# --------------------------------------------------------------
# Import base definitions


+ 1
- 1
jucewrapper/CMakeLists.txt View File

@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.15)
project(Cardinal VERSION 22.12)
project(Cardinal VERSION 23.02)

add_subdirectory(JUCE)



+ 2
- 2
src/CardinalCommon.cpp View File

@@ -1,6 +1,6 @@
/*
* 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
* 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



+ 2
- 2
src/CardinalPlugin.cpp View File

@@ -1,6 +1,6 @@
/*
* 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
* modify it under the terms of the GNU General Public License as
@@ -357,7 +357,7 @@ protected:
uint32_t getVersion() const override
{
return d_version(0, 22, 12);
return d_version(0, 23, 2);
}
int64_t getUniqueId() const override


Loading…
Cancel
Save