Browse Source

Bump version to 22.11

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

+ 2
- 2
Makefile View File

@@ -5,10 +5,10 @@
#

# also set in:
# jucewrapper/CMakeList.txt `project`
# jucewrapper/CMakeLists.txt `project`
# src/CardinalCommon.cpp `CARDINAL_VERSION`
# src/CardinalPlugin.cpp `getVersion`
VERSION = 22.10
VERSION = 22.11

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


+ 1
- 1
jucewrapper/CMakeLists.txt View File

@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.15)
project(Cardinal VERSION 22.10)
project(Cardinal VERSION 22.11)

add_subdirectory(JUCE)



+ 1
- 1
src/CardinalCommon.cpp View File

@@ -57,7 +57,7 @@
# include <emscripten/emscripten.h>
#endif

const std::string CARDINAL_VERSION = "22.10";
const std::string CARDINAL_VERSION = "22.11";

namespace rack {



+ 1
- 1
src/CardinalPlugin.cpp View File

@@ -714,7 +714,7 @@ protected:
uint32_t getVersion() const override
{
return d_version(0, 22, 10);
return d_version(0, 22, 11);
}
int64_t getUniqueId() const override


Loading…
Cancel
Save