Bläddra i källkod

Version 2.0.1

Scott Lahteine 4 år sedan
förälder
incheckning
ee17051933
4 ändrade filer med 4 tillägg och 129 borttagningar
  1. 0
    25
      .github/workflows/bump-date.yml
  2. 0
    100
      .github/workflows/test-builds.yml
  3. 2
    2
      Marlin/src/inc/Version.h
  4. 2
    2
      platformio.ini

+ 0
- 25
.github/workflows/bump-date.yml Visa fil

@@ -1,25 +0,0 @@
1
-#
2
-# bump-date.yml
3
-# Bump the distribution date once per day
4
-#
5
-
6
-name: Bump Distribution Date
7
-
8
-on:
9
-  schedule:
10
-    - cron:  '0 0 * * *'
11
-
12
-jobs:
13
-  bump_date:
14
-
15
-    runs-on: ubuntu-latest
16
-
17
-    steps:
18
-
19
-    - name: Check out bugfix-2.0.x
20
-      uses: actions/checkout@v2
21
-      with:
22
-        ref: bugfix-2.0.x
23
-
24
-    - name: Bump Distribution Date
25
-      run: source ./buildroot/bin/bump_date

+ 0
- 100
.github/workflows/test-builds.yml Visa fil

@@ -1,100 +0,0 @@
1
-#
2
-# test-builds.yml
3
-# Do test builds to catch compile errors
4
-#
5
-
6
-name: CI
7
-
8
-on:
9
-  pull_request:
10
-    branches:
11
-    - bugfix-2.0.x
12
-    - dev-2.1.x
13
-    paths-ignore:
14
-    - config/**
15
-    - data/**
16
-    - docs/**
17
-    - '**/*.md'
18
-
19
-jobs:
20
-  test_builds:
21
-
22
-    runs-on: ubuntu-latest
23
-
24
-    strategy:
25
-      matrix:
26
-        test-platform:
27
-        # Base Environments
28
-
29
-        - DUE
30
-        - esp32
31
-        - linux_native
32
-        - megaatmega2560
33
-        - teensy31
34
-        - teensy35
35
-
36
-        # Extended AVR Environments
37
-
38
-        - FYSETC_F6_13
39
-        - megaatmega1280
40
-        - rambo
41
-        - sanguino_atmega1284p
42
-        - sanguino_atmega644p
43
-
44
-        # Extended STM32 Environments
45
-
46
-        - STM32F103RC_bigtree
47
-        - STM32F103RC_bigtree_USB
48
-        - STM32F103RE_bigtree
49
-        - STM32F103RE_bigtree_USB
50
-        - STM32F103RC_fysetc
51
-        - jgaurora_a5s_a1
52
-        - STM32F103VE_longer
53
-        - STM32F407VE_black
54
-        - BIGTREE_SKR_PRO
55
-        - mks_robin
56
-        - ARMED
57
-
58
-        # Put lengthy tests last
59
-
60
-        - LPC1768
61
-        - LPC1769
62
-
63
-        # STM32 with non-STM framework. both broken for now. they should use HAL_STM32 which is working.
64
-
65
-        #- STM32F4
66
-        #- STM32F7
67
-
68
-        # Non-working environment tests
69
-
70
-        #- BIGTREE_BTT002
71
-        #- at90usb1286_cdc
72
-        #- at90usb1286_dfu
73
-        #- STM32F103CB_malyan
74
-        #- mks_robin_lite
75
-        #- mks_robin_mini
76
-        #- mks_robin_nano
77
-        #- SAMD51_grandcentral_m4
78
-
79
-    steps:
80
-
81
-    - name: Select Python 3.7
82
-      uses: actions/setup-python@v1
83
-      with:
84
-        python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
85
-        architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
86
-
87
-    - name: Install PlatformIO
88
-      run: |
89
-        pip install -U https://github.com/platformio/platformio-core/archive/master.zip
90
-        platformio update
91
-
92
-    - name: Check out the PR
93
-      uses: actions/checkout@v2
94
-
95
-    - name: Run ${{ matrix.test-platform }} Tests
96
-      run: |
97
-        chmod +x buildroot/bin/*
98
-        chmod +x buildroot/share/tests/*
99
-        export PATH=./buildroot/bin/:./buildroot/share/tests/:${PATH}
100
-        run_tests . ${{ matrix.test-platform }}

+ 2
- 2
Marlin/src/inc/Version.h Visa fil

@@ -25,7 +25,7 @@
25 25
  * Release version. Leave the Marlin version or apply a custom scheme.
26 26
  */
27 27
 #ifndef SHORT_BUILD_VERSION
28
-  #define SHORT_BUILD_VERSION "2.0.0"
28
+  #define SHORT_BUILD_VERSION "2.0.1"
29 29
 #endif
30 30
 
31 31
 /**
@@ -42,7 +42,7 @@
42 42
  * version was tagged.
43 43
  */
44 44
 #ifndef STRING_DISTRIBUTION_DATE
45
-  #define STRING_DISTRIBUTION_DATE "2019-12-01"
45
+  #define STRING_DISTRIBUTION_DATE "2019-12-24"
46 46
 #endif
47 47
 
48 48
 /**

+ 2
- 2
platformio.ini Visa fil

@@ -31,7 +31,7 @@ lib_deps =
31 31
   Adafruit NeoPixel@1.2.5
32 32
   Adafruit_MAX31865=https://github.com/adafruit/Adafruit_MAX31865/archive/master.zip
33 33
   LiquidTWI2=https://github.com/lincomatic/LiquidTWI2/archive/master.zip
34
-  Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/dev.zip
34
+  Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/0.7.0.zip
35 35
   SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
36 36
   SailfishRGB_LED=https://github.com/mikeshub/SailfishRGB_LED/archive/master.zip
37 37
   SlowSoftI2CMaster=https://github.com/mikeshub/SlowSoftI2CMaster/archive/master.zip
@@ -659,7 +659,7 @@ lib_deps          =
659 659
   TMCStepper@>=0.5.2,<1.0.0
660 660
   Adafruit NeoPixel
661 661
   LiquidTWI2=https://github.com/lincomatic/LiquidTWI2/archive/master.zip
662
-  Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/dev.zip
662
+  Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/0.7.0.zip
663 663
 lib_ignore        = SoftwareSerial, SoftwareSerialM
664 664
 src_filter        = ${common.default_src_filter} +<src/HAL/HAL_STM32>
665 665
 monitor_speed     = 250000

Laddar…
Avbryt
Spara