Skip to content

Commit 89ec360

Browse files
committed
Bump version to 26.01
Signed-off-by: falkTX <[email protected]>
1 parent 0d1d1a2 commit 89ec360

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.github/ISSUE_TEMPLATE/bug.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ body:
55
id: version
66
attributes:
77
label: Version
8-
value: "25.12"
8+
value: "26.01"
99
validations:
1010
required: true
1111
- type: dropdown

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ include $(ROOT)/Makefile.base.mk
1515
# src/CardinalPlugin.cpp `getVersion`
1616
# utils/macOS/Info_{JACK,Native}.plist
1717
# .github/ISSUE_TEMPLATE/bug.yaml src/CardinalCommon.cpp src/CardinalPlugin.cpp utils/macOS/Info_{JACK,Native}.plist
18-
VERSION = 25.12
18+
VERSION = 26.01
1919

2020
# ---------------------------------------------------------------------------------------------------------------------
2121
# Build targets

src/CardinalCommon.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* DISTRHO Cardinal Plugin
3-
* Copyright (C) 2021-2025 Filipe Coelho <[email protected]>
3+
* Copyright (C) 2021-2026 Filipe Coelho <[email protected]>
44
* SPDX-License-Identifier: GPL-3.0-or-later
55
*/
66

@@ -99,7 +99,7 @@ void destroyStaticPlugins();
9999
}
100100
}
101101

102-
const std::string CARDINAL_VERSION = "25.12";
102+
const std::string CARDINAL_VERSION = "26.01";
103103

104104
// -----------------------------------------------------------------------------------------------------------
105105

src/CardinalPlugin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* DISTRHO Cardinal Plugin
3-
* Copyright (C) 2021-2025 Filipe Coelho <[email protected]>
3+
* Copyright (C) 2021-2026 Filipe Coelho <[email protected]>
44
* SPDX-License-Identifier: GPL-3.0-or-later
55
*/
66

@@ -414,7 +414,7 @@ class CardinalPlugin : public CardinalBasePlugin
414414

415415
uint32_t getVersion() const override
416416
{
417-
return d_version(0, 25, 12);
417+
return d_version(0, 26, 1);
418418
}
419419

420420
int64_t getUniqueId() const override

src/CardinalPluginContext.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* DISTRHO Cardinal Plugin
3-
* Copyright (C) 2021-2022 Filipe Coelho <[email protected]>
3+
* Copyright (C) 2021-2026 Filipe Coelho <[email protected]>
44
*
55
* This program is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU General Public License as

src/CardinalUI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* DISTRHO Cardinal Plugin
3-
* Copyright (C) 2021-2024 Filipe Coelho <[email protected]>
3+
* Copyright (C) 2021-2026 Filipe Coelho <[email protected]>
44
*
55
* This program is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU General Public License as

utils/macOS/Info_JACK.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
<key>CFBundleIdentifier</key>
1212
<string>studio.kx.distrho.cardinal.jack</string>
1313
<key>CFBundleShortVersionString</key>
14-
<string>25.12</string>
14+
<string>26.01</string>
1515
<key>LSMinimumSystemVersion</key>
1616
<string>10.15</string>
1717
<key>NSHumanReadableCopyright</key>
18-
<string>(C) 2011-2025 Filipe Coelho.
18+
<string>(C) 2011-2026 Filipe Coelho.
1919
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or any later version.</string>
2020
<key>NSHighResolutionCapable</key>
2121
<true/>

utils/macOS/Info_Native.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
<key>CFBundleIdentifier</key>
1212
<string>studio.kx.distrho.cardinal.native</string>
1313
<key>CFBundleShortVersionString</key>
14-
<string>25.12</string>
14+
<string>26.01</string>
1515
<key>LSMinimumSystemVersion</key>
1616
<string>10.15</string>
1717
<key>NSHumanReadableCopyright</key>
18-
<string>(C) 2011-2025 Filipe Coelho.
18+
<string>(C) 2011-2026 Filipe Coelho.
1919
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or any later version.</string>
2020
<key>NSHighResolutionCapable</key>
2121
<true/>

0 commit comments

Comments
 (0)