diff --git a/fbt_options.py b/fbt_options.py index 0458ea03bc..8fb8f1429c 100644 --- a/fbt_options.py +++ b/fbt_options.py @@ -14,7 +14,7 @@ # Suffix to add to files when building distribution # If OS environment has DIST_SUFFIX set, it will be used instead -DIST_SUFFIX = "XFW-0039_01172023" +DIST_SUFFIX = "XFW-0040_01252023" # Coprocessor firmware COPRO_OB_DATA = "scripts/ob.data" diff --git a/scripts/version.py b/scripts/version.py index 8f3ff0cf57..363df0aeb2 100644 --- a/scripts/version.py +++ b/scripts/version.py @@ -14,7 +14,7 @@ def __init__(self, source_dir): self.gitlist = [("commit", "rev-parse --short HEAD"), ("branch", "rev-parse --abbrev-ref") , ("branch_num", "rev-list -count HEAD")] def get_version_info(self): - commit = branch = branch_num = "XFW-0039" + commit = branch = branch_num = "XFW-0040" # 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!