Skip to content

Commit

Permalink
Bump version to 2.5.3
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Jan 13, 2023
1 parent 7a0fd0e commit 16b431c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ MODULEDIR := $(CURDIR)/build/modules/Release
endif

# see also source/frontend/carla_shared.py and source/includes/CarlaDefines.h
VERSION := 2.5.2
VERSION := 2.5.3

-include Makefile.user.mk

Expand Down
4 changes: 2 additions & 2 deletions source/frontend/carla_shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

# Common Carla code
# Copyright (C) 2011-2022 Filipe Coelho <[email protected]>
# Copyright (C) 2011-2023 Filipe Coelho <[email protected]>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
Expand Down Expand Up @@ -71,7 +71,7 @@
# ------------------------------------------------------------------------------------------------------------
# Set Version

VERSION = "2.5.2"
VERSION = "2.5.3"

# ------------------------------------------------------------------------------------------------------------
# Set TMP
Expand Down
2 changes: 1 addition & 1 deletion source/frontend/carla_widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def __init__(self, parent, host):
self.ui.l_about.setText(self.tr(""
"<br>Version %s"
"<br>Carla is a fully-featured audio plugin host%s.<br>"
"<br>Copyright (C) 2011-2022 falkTX<br>"
"<br>Copyright (C) 2011-2023 falkTX<br>"
"" % (VERSION, extraInfo)))

if self.ui.about.palette().color(QPalette.Background).blackF() < 0.5:
Expand Down
6 changes: 3 additions & 3 deletions source/includes/CarlaDefines.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Carla common defines
* Copyright (C) 2011-2022 Filipe Coelho <[email protected]>
* Copyright (C) 2011-2023 Filipe Coelho <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Expand Down Expand Up @@ -32,8 +32,8 @@
#endif

/* Set Version */
#define CARLA_VERSION_HEX 0x020502
#define CARLA_VERSION_STRING "2.5.2"
#define CARLA_VERSION_HEX 0x020503
#define CARLA_VERSION_STRING "2.5.3"
#define CARLA_VERSION_STRMIN "2.5"

/* Check OS */
Expand Down

0 comments on commit 16b431c

Please sign in to comment.