diff --git a/.github/workflows/bump-date.yml b/.github/workflows/bump-date.yml
deleted file mode 100644
index df2ac5fbdd4e6fb7a24b64fd53929eaed8ef80c3..0000000000000000000000000000000000000000
--- a/.github/workflows/bump-date.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-#
-# bump-date.yml
-# Bump the distribution date once per day
-#
-
-name: Bump Distribution Date
-
-on:
- schedule:
- - cron: '0 0 * * *'
-
-jobs:
- bump_date:
-
- runs-on: ubuntu-latest
-
- steps:
-
- - name: Check out bugfix-2.0.x
- uses: actions/checkout@v2
- with:
- ref: bugfix-2.0.x
-
- - name: Bump Distribution Date
- run: source ./buildroot/bin/bump_date
diff --git a/.github/workflows/test-builds.yml b/.github/workflows/test-builds.yml
deleted file mode 100644
index f7412b3945170e3d5398e062d5ad0225b8309af3..0000000000000000000000000000000000000000
--- a/.github/workflows/test-builds.yml
+++ /dev/null
@@ -1,100 +0,0 @@
-#
-# test-builds.yml
-# Do test builds to catch compile errors
-#
-
-name: CI
-
-on:
- pull_request:
- branches:
- - bugfix-2.0.x
- - dev-2.1.x
- paths-ignore:
- - config/**
- - data/**
- - docs/**
- - '**/*.md'
-
-jobs:
- test_builds:
-
- runs-on: ubuntu-latest
-
- strategy:
- matrix:
- test-platform:
- # Base Environments
-
- - DUE
- - esp32
- - linux_native
- - megaatmega2560
- - teensy31
- - teensy35
-
- # Extended AVR Environments
-
- - FYSETC_F6_13
- - megaatmega1280
- - rambo
- - sanguino_atmega1284p
- - sanguino_atmega644p
-
- # Extended STM32 Environments
-
- - STM32F103RC_bigtree
- - STM32F103RC_bigtree_USB
- - STM32F103RE_bigtree
- - STM32F103RE_bigtree_USB
- - STM32F103RC_fysetc
- - jgaurora_a5s_a1
- - STM32F103VE_longer
- - STM32F407VE_black
- - BIGTREE_SKR_PRO
- - mks_robin
- - ARMED
-
- # Put lengthy tests last
-
- - LPC1768
- - LPC1769
-
- # STM32 with non-STM framework. both broken for now. they should use HAL_STM32 which is working.
-
- #- STM32F4
- #- STM32F7
-
- # Non-working environment tests
-
- #- BIGTREE_BTT002
- #- at90usb1286_cdc
- #- at90usb1286_dfu
- #- STM32F103CB_malyan
- #- mks_robin_lite
- #- mks_robin_mini
- #- mks_robin_nano
- #- SAMD51_grandcentral_m4
-
- steps:
-
- - name: Select Python 3.7
- uses: actions/setup-python@v1
- with:
- python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
- architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
-
- - name: Install PlatformIO
- run: |
- pip install -U https://github.com/platformio/platformio-core/archive/master.zip
- platformio update
-
- - name: Check out the PR
- uses: actions/checkout@v2
-
- - name: Run ${{ matrix.test-platform }} Tests
- run: |
- chmod +x buildroot/bin/*
- chmod +x buildroot/share/tests/*
- export PATH=./buildroot/bin/:./buildroot/share/tests/:${PATH}
- run_tests . ${{ matrix.test-platform }}
diff --git a/Marlin/src/inc/Version.h b/Marlin/src/inc/Version.h
index 36b4ef162aded6fe62d694cb5cd2595193bccda8..7789fcdbfd6825d089abba07b4ca40f8f28f91d0 100644
--- a/Marlin/src/inc/Version.h
+++ b/Marlin/src/inc/Version.h
@@ -25,7 +25,7 @@
* Release version. Leave the Marlin version or apply a custom scheme.
*/
#ifndef SHORT_BUILD_VERSION
- #define SHORT_BUILD_VERSION "2.0.0"
+ #define SHORT_BUILD_VERSION "2.0.1"
#endif
/**
@@ -42,7 +42,7 @@
* version was tagged.
*/
#ifndef STRING_DISTRIBUTION_DATE
- #define STRING_DISTRIBUTION_DATE "2019-12-01"
+ #define STRING_DISTRIBUTION_DATE "2019-12-24"
#endif
/**
diff --git a/platformio.ini b/platformio.ini
index e89a476b07d5ec8f51d6bff6bad0258152e0895f..fce93ad67980660b7281a35d02362ef5e7e693f3 100644
--- a/platformio.ini
+++ b/platformio.ini
@@ -31,7 +31,7 @@ lib_deps =
Adafruit NeoPixel@1.2.5
Adafruit_MAX31865=https://github.com/adafruit/Adafruit_MAX31865/archive/master.zip
LiquidTWI2=https://github.com/lincomatic/LiquidTWI2/archive/master.zip
- Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/dev.zip
+ Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/0.7.0.zip
SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
SailfishRGB_LED=https://github.com/mikeshub/SailfishRGB_LED/archive/master.zip
SlowSoftI2CMaster=https://github.com/mikeshub/SlowSoftI2CMaster/archive/master.zip
@@ -659,7 +659,7 @@ lib_deps =
TMCStepper@>=0.5.2,<1.0.0
Adafruit NeoPixel
LiquidTWI2=https://github.com/lincomatic/LiquidTWI2/archive/master.zip
- Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/dev.zip
+ Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/0.7.0.zip
lib_ignore = SoftwareSerial, SoftwareSerialM
src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
monitor_speed = 250000