From 508d046dfeef1f29d5e6ae5a2d2bc710331a1a7e Mon Sep 17 00:00:00 2001 From: VerstreuteSeele Date: Tue, 14 Feb 2023 09:41:17 +0100 Subject: [PATCH] V41 Release Candidate Changes --- fbt_options.py | 2 +- scripts/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fbt_options.py b/fbt_options.py index 8fb8f1429..d3670b01a 100644 --- a/fbt_options.py +++ b/fbt_options.py @@ -14,7 +14,7 @@ DEBUG = 0 # Suffix to add to files when building distribution # If OS environment has DIST_SUFFIX set, it will be used instead -DIST_SUFFIX = "XFW-0040_01252023" +DIST_SUFFIX = "XFW-0041_02142023" # Coprocessor firmware COPRO_OB_DATA = "scripts/ob.data" diff --git a/scripts/version.py b/scripts/version.py index 7f0a11349..ed2e83162 100644 --- a/scripts/version.py +++ b/scripts/version.py @@ -18,7 +18,7 @@ class GitVersion: ] def get_version_info(self): - commit = branch = branch_num = "XFW-0040" + commit = branch = branch_num = "XFW-0041" # We dont use an `or` in commands that we expect to fail. It will serve no function. # We also dont try;exept an entire block of code. This is bad practise. We only try the single part that we expect to fail!