Browse Source

Bump version to 2.4.0

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.4.0
falkTX 3 years ago
parent
commit
dc2068155d
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
3 changed files with 6 additions and 6 deletions
  1. +1
    -1
      Makefile
  2. +1
    -1
      source/frontend/carla_shared.py
  3. +4
    -4
      source/includes/CarlaDefines.h

+ 1
- 1
Makefile View File

@@ -22,7 +22,7 @@ else
MODULEDIR := $(CURDIR)/build/modules/Release
endif

VERSION := 2.3.2
VERSION := 2.4.0

# ---------------------------------------------------------------------------------------------------------------------



+ 1
- 1
source/frontend/carla_shared.py View File

@@ -71,7 +71,7 @@ if WINDOWS:
# ------------------------------------------------------------------------------------------------------------
# Set Version

VERSION = "2.3.2"
VERSION = "2.4.0"

# ------------------------------------------------------------------------------------------------------------
# Set TMP


+ 4
- 4
source/includes/CarlaDefines.h View File

@@ -1,6 +1,6 @@
/*
* Carla common defines
* Copyright (C) 2011-2020 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2011-2021 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
@@ -32,9 +32,9 @@
#endif

/* Set Version */
#define CARLA_VERSION_HEX 0x020302
#define CARLA_VERSION_STRING "2.3.2"
#define CARLA_VERSION_STRMIN "2.3"
#define CARLA_VERSION_HEX 0x020400
#define CARLA_VERSION_STRING "2.4.0"
#define CARLA_VERSION_STRMIN "2.4"

/* Check OS */
#if defined(WIN64) || defined(_WIN64) || defined(__WIN64__) || defined(_M_ARM64)


Loading…
Cancel
Save