From e0de16f3a8f734ce357dcc05885de8391fdb16d2 Mon Sep 17 00:00:00 2001 From: InsanityAutomation Date: Sun, 6 Feb 2022 12:01:38 -0500 Subject: [PATCH] UpdateVersion --- Marlin/Version.h | 2 +- buildroot/share/PlatformIO/scripts/common-cxxflags.py | 2 +- buildroot/share/PlatformIO/scripts/random-bin.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Marlin/Version.h b/Marlin/Version.h index 62ea4b0ee6..4ee2df45eb 100644 --- a/Marlin/Version.h +++ b/Marlin/Version.h @@ -28,7 +28,7 @@ /** * Marlin release version identifier */ -#define SHORT_BUILD_VERSION "2.0.9_DW7.4.4" +#define SHORT_BUILD_VERSION "2.0.9_DW7.4.5" /** * Verbose version identifier which should contain a reference to the location diff --git a/buildroot/share/PlatformIO/scripts/common-cxxflags.py b/buildroot/share/PlatformIO/scripts/common-cxxflags.py index 876f21df23..41de84e66c 100644 --- a/buildroot/share/PlatformIO/scripts/common-cxxflags.py +++ b/buildroot/share/PlatformIO/scripts/common-cxxflags.py @@ -6,7 +6,7 @@ import pioutil if pioutil.is_pio_build(): Import("env") - env.Replace(PROGNAME="%s_DW7.4.4" % (str(env["PIOENV"]))) + env.Replace(PROGNAME="%s_DW7.4.5" % (str(env["PIOENV"]))) cxxflags = [ #"-Wno-incompatible-pointer-types", diff --git a/buildroot/share/PlatformIO/scripts/random-bin.py b/buildroot/share/PlatformIO/scripts/random-bin.py index 4e7462efd1..e105e33cee 100644 --- a/buildroot/share/PlatformIO/scripts/random-bin.py +++ b/buildroot/share/PlatformIO/scripts/random-bin.py @@ -7,5 +7,5 @@ if pioutil.is_pio_build(): from datetime import datetime Import("env") env_name = str(env["PIOENV"]) - env['PROGNAME'] = "firmware_%s_DW7.4.4" % (env_name) + env['PROGNAME'] = "firmware_%s_DW7.4.5" % (env_name) #env['PROGNAME'] = datetime.now().strftime("firmware-%Y%m%d-%H%M%S")