Skip to content

Commit d082234

Browse files
committed
🔖 Moving to bugfix-2.1.x
1 parent 8aca383 commit d082234

File tree

18 files changed

+38
-38
lines changed

18 files changed

+38
-38
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,24 @@ body:
1414
1515
## Before Reporting a Bug
1616
17-
- Read and understand Marlin's [Code of Conduct](https://github.com/MarlinFirmware/Marlin/blob/bugfix-2.0.x/.github/code_of_conduct.md). You are expected to comply with it, including treating everyone with respect.
17+
- Read and understand Marlin's [Code of Conduct](https://github.com/MarlinFirmware/Marlin/blob/bugfix-2.1.x/.github/code_of_conduct.md). You are expected to comply with it, including treating everyone with respect.
1818
19-
- Test with the [`bugfix-2.0.x` branch](https://github.com/MarlinFirmware/Marlin/archive/bugfix-2.0.x.zip) to see whether the issue still exists.
19+
- Test with the [`bugfix-2.1.x` branch](https://github.com/MarlinFirmware/Marlin/archive/bugfix-2.1.x.zip) to see whether the issue still exists.
2020
2121
## Instructions
2222
23-
Please follow the instructions below. Failure to do so may result in your issue being closed. See [Contributing to Marlin](https://github.com/MarlinFirmware/Marlin/blob/bugfix-2.0.x/.github/contributing.md) for additional guidelines.
23+
Please follow the instructions below. Failure to do so may result in your issue being closed. See [Contributing to Marlin](https://github.com/MarlinFirmware/Marlin/blob/bugfix-2.1.x/.github/contributing.md) for additional guidelines.
2424
2525
1. Provide a good title starting with [BUG].
2626
2. Fill out all sections of this bug report form.
2727
3. Always attach configuration files so we can build and test your setup.
2828
2929
- type: dropdown
3030
attributes:
31-
label: Did you test the latest `bugfix-2.0.x` code?
31+
label: Did you test the latest `bugfix-2.1.x` code?
3232
description: >-
3333
Always try the latest code to make sure the issue you are reporting is not already fixed. To download
34-
the latest code just [click this link](https://github.com/MarlinFirmware/Marlin/archive/bugfix-2.0.x.zip).
34+
the latest code just [click this link](https://github.com/MarlinFirmware/Marlin/archive/bugfix-2.1.x.zip).
3535
options:
3636
- Yes, and the problem still exists.
3737
- No, but I will test it now!

.github/ISSUE_TEMPLATE/feature_request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ body:
1717
1818
- Read and understand Marlin's [Code of Conduct](https://github.com/MarlinFirmware/Marlin/blob/master/.github/code_of_conduct.md). You are expected to comply with it, including treating everyone with respect.
1919
20-
- Check the latest [`bugfix-2.0.x` branch](https://github.com/MarlinFirmware/Marlin/archive/bugfix-2.0.x.zip) to see if the feature already exists.
20+
- Check the latest [`bugfix-2.1.x` branch](https://github.com/MarlinFirmware/Marlin/archive/bugfix-2.1.x.zip) to see if the feature already exists.
2121
2222
- Before you proceed with your request, please consider if it is necessary to make it into a firmware feature, or if it may be better suited for a slicer or host feature.
2323

.github/contributing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Unsure where to begin contributing to Marlin? You can start by looking through t
116116

117117
### Pull Requests
118118

119-
Pull Requests should always be targeted to working branches (e.g., `bugfix-2.0.x` and/or `bugfix-1.1.x`) and never to release branches (e.g., `2.0.x` and/or `1.1.x`). If this is your first Pull Request, please read our [Guide to Pull Requests](https://marlinfw.org/docs/development/getting_started_pull_requests.html) and Github's [Pull Request](https://help.github.com/articles/creating-a-pull-request/) documentation.
119+
Pull Requests should always be targeted to working branches (e.g., `bugfix-2.1.x` and/or `bugfix-1.1.x`) and never to release branches (e.g., `2.0.x` and/or `1.1.x`). If this is your first Pull Request, please read our [Guide to Pull Requests](https://marlinfw.org/docs/development/getting_started_pull_requests.html) and Github's [Pull Request](https://help.github.com/articles/creating-a-pull-request/) documentation.
120120

121121
* Fill in [the required template](pull_request_template.md).
122122
* Don't include issue numbers in the PR title.

.github/workflows/bump-date.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818

1919
steps:
2020

21-
- name: Check out bugfix-2.0.x
21+
- name: Check out bugfix-2.1.x
2222
uses: actions/checkout@v2
2323
with:
24-
ref: bugfix-2.0.x
24+
ref: bugfix-2.1.x
2525

2626
- name: Bump Distribution Date
2727
run: |

.github/workflows/check-pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
comment: >
2727
Thanks for your contribution! Unfortunately we can't accept PRs directed at release branches. We make patches to the bugfix branches and only later do we push them out as releases.
2828
29-
Please redo this PR starting with the `bugfix-2.0.x` branch and be careful to target `bugfix-2.0.x` when resubmitting the PR.
29+
Please redo this PR starting with the `bugfix-2.1.x` branch and be careful to target `bugfix-2.1.x` when resubmitting the PR.
3030
31-
It may help to set your fork's default branch to `bugfix-2.0.x`.
31+
It may help to set your fork's default branch to `bugfix-2.1.x`.
3232
3333
See [this page](http://marlinfw.org/docs/development/getting_started_pull_requests.html) for full instructions.

.github/workflows/test-builds.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ name: CI
88
on:
99
pull_request:
1010
branches:
11-
- bugfix-2.0.x
11+
- bugfix-2.1.x
1212
paths-ignore:
1313
- config/**
1414
- data/**
1515
- docs/**
1616
- '**/*.md'
1717
push:
1818
branches:
19-
- bugfix-2.0.x
19+
- bugfix-2.1.x
2020
paths-ignore:
2121
- config/**
2222
- data/**

Marlin/Version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* Marlin release version identifier
3030
*/
31-
//#define SHORT_BUILD_VERSION "bugfix-2.0.x"
31+
//#define SHORT_BUILD_VERSION "bugfix-2.1.x"
3232

3333
/**
3434
* Verbose version identifier which should contain a reference to the location

Marlin/src/inc/Version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Release version. Leave the Marlin version or apply a custom scheme.
2626
*/
2727
#ifndef SHORT_BUILD_VERSION
28-
#define SHORT_BUILD_VERSION "bugfix-2.0.x"
28+
#define SHORT_BUILD_VERSION "bugfix-2.1.x"
2929
#endif
3030

3131
/**

Marlin/src/lcd/e3v2/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# DWIN for Creality Ender 3 v2
22

3-
Marlin's Ender 3 v2 support requires the `DWIN_SET` included with the Ender 3 V2 [example configuration](https://github.com/MarlinFirmware/Configurations/tree/bugfix-2.0.x/config/examples/Creality/Ender-3%20V2).
3+
Marlin's Ender 3 v2 support requires the `DWIN_SET` included with the Ender 3 V2 [example configuration](https://github.com/MarlinFirmware/Configurations/tree/bugfix-2.1.x/config/examples/Creality/Ender-3%20V2).
44

55
## Easy Install
66

Marlin/src/lcd/e3v2/jyersui/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# DWIN for Creality Ender 3 v2
22

3-
Marlin's Ender 3 v2 support requires the `DWIN_SET` included with the Ender 3 V2 [example configuration](https://github.com/MarlinFirmware/Configurations/tree/bugfix-2.0.x/config/examples/Creality/Ender-3%20V2).
3+
Marlin's Ender 3 v2 support requires the `DWIN_SET` included with the Ender 3 V2 [example configuration](https://github.com/MarlinFirmware/Configurations/tree/bugfix-2.1.x/config/examples/Creality/Ender-3%20V2).
44

55
## Easy Install
66

Marlin/src/pins/stm32f4/pins_ANET_ET4.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
// Z Probe
6565
//
6666
#if ENABLED(BLTOUCH)
67-
#error "You will need to use 24V to 5V converter and remove one resistor and capacitor from the motherboard. See https://github.com/davidtgbe/Marlin/blob/bugfix-2.0.x/docs/Tutorials/bltouch-en.md for more information. Comment out this line to proceed at your own risk."
67+
#error "You will need to use 24V to 5V converter and remove one resistor and capacitor from the motherboard. See https://bit.ly/3xg9cXO for more information. Comment out this line to proceed at your own risk."
6868
#define SERVO0_PIN PC3
6969
#elif !defined(Z_MIN_PROBE_PIN)
7070
#define Z_MIN_PROBE_PIN PC3

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Marlin 2.0 introduces a layer of abstraction so that all the existing high-level
5959

6060
## Submitting Patches
6161

62-
Proposed patches should be submitted as a Pull Request against the ([bugfix-2.0.x](https://github.com/MarlinFirmware/Marlin/tree/bugfix-2.0.x)) branch.
62+
Proposed patches should be submitted as a Pull Request against the ([bugfix-2.1.x](https://github.com/MarlinFirmware/Marlin/tree/bugfix-2.1.x)) branch.
6363

6464
- This branch is for fixing bugs and integrating any new features for the duration of the Marlin 2.0.x life-cycle.
6565
- Follow the [Coding Standards](https://marlinfw.org/docs/development/coding_standards.html) to gain points with the maintainers.

buildroot/bin/use_example_configs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
IFS=: read -r PART1 PART2 <<< "$@"
44
[ -n "${PART2}" ] && { REPO="$PART1" ; RDIR="${PART2// /%20}" ; } \
5-
|| { REPO=bugfix-2.0.x ; RDIR="${PART1// /%20}" ; }
5+
|| { REPO=bugfix-2.1.x ; RDIR="${PART1// /%20}" ; }
66
EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/$REPO/config/examples"
77

88
which curl >/dev/null && TOOL='curl -L -s -S -f -o wgot'

buildroot/share/git/mfconfig

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ COMMIT_STEPS=0
3535

3636
ACTION=${1:-init}
3737
IMPORT=${2:-"import-2.0.x"}
38-
EXPORT=${3:-"bugfix-2.0.x"}
38+
EXPORT=${3:-"bugfix-2.1.x"}
3939

4040
echo -n "Doing grhh ... " ; grhh ; echo
4141

@@ -52,7 +52,7 @@ if [[ $ACTION == "manual" ]]; then
5252
git checkout $IMPORT || exit
5353

5454
# Reset from the latest complete state
55-
#git reset --hard bugfix-2.0.x
55+
#git reset --hard bugfix-2.1.x
5656

5757
cp "$MARLINREPO/Marlin/"Configuration*.h "$CDEF/"
5858
#git add . && git commit -m "Changes from Marlin ($(date '+%Y-%m-%d %H:%M'))."

buildroot/share/git/mffp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# mffp [1|2] [ref]
44
#
55
# Push the given commit (or HEAD) upstream immediately.
6-
# By default: `git push upstream HEAD:bugfix-2.0.x`
6+
# By default: `git push upstream HEAD:bugfix-2.1.x`
77
#
88

99
usage() { echo "usage: `basename $0` [1|2] [ref]" 1>&2 ; }

buildroot/share/git/mfinfo

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
# - Remote (upstream) Org name (MarlinFirmware)
88
# - Remote (origin) Org name (your Github username)
99
# - Repo Name (Marlin, MarlinDocumentation)
10-
# - PR Target branch (e.g., bugfix-2.0.x)
10+
# - PR Target branch (e.g., bugfix-2.1.x)
1111
# - Branch Arg (the branch argument or current branch)
1212
# - Current Branch
1313
#
1414
# Example output
1515
# > mfinfo -q ongoing
16-
# MarlinFirmware john.doe Marlin bugfix-2.0.x ongoing bugfix-2.0.x -q
16+
# MarlinFirmware john.doe Marlin bugfix-2.1.x ongoing bugfix-2.1.x -q
1717
#
1818

1919
CURR=$(git branch 2>/dev/null | grep ^* | sed 's/\* //g')
@@ -55,7 +55,7 @@ while [[ $# -gt 0 ]]; do
5555
done
5656

5757
case "$REPO" in
58-
Marlin ) TARG=bugfix-2.0.x ; ((INDEX == 1)) && TARG=bugfix-1.1.x ; [[ $BRANCH =~ ^[12]$ ]] && USAGE=1 ;;
58+
Marlin ) TARG=bugfix-2.1.x ; ((INDEX == 1)) && TARG=bugfix-1.1.x ; [[ $BRANCH =~ ^[12]$ ]] && USAGE=1 ;;
5959
Configurations ) TARG=import-2.0.x ;;
6060
MarlinDocumentation ) TARG=master ;;
6161
AutoBuildMarlin ) TARG=master ;;

buildroot/share/git/mfprep

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
#
33
# mfprep tag1 [tag2]
44
#
5-
# Find commits in bugfix-2.0.x that are not yet in 2.0.x.
5+
# Find commits in bugfix-2.1.x that are not yet in 2.0.x.
66
#
77
# Specify a version tag to start from, and optional version tag to end at.
8-
# For bugfix-2.0.x the tag will be prefixed by bf- to distinguish it from the version tag,
9-
# so at every release be sure to create a bf- tag and publish it to origin.
8+
# For bugfix-2.1.x the tag will be prefixed by dev- to distinguish it from the version tag,
9+
# so at every release be sure to create a dev- tag and publish it to origin.
1010
#
1111

1212
SED=$(which gsed sed | head -n1)
@@ -22,24 +22,24 @@ DEST=2.1.x
2222

2323
# Validate that the required tags exist
2424

25-
MTAG=`git tag | grep -e "^bf-$TAG1\$"`
26-
[[ -n "$MTAG" ]] || { echo "Can't find tag bf-$TAG1" ; exit 1 ; }
25+
MTAG=`git tag | grep -e "^dev-$TAG1\$"`
26+
[[ -n "$MTAG" ]] || { echo "Can't find tag dev-$TAG1" ; exit 1 ; }
2727
MTAG=`git tag | grep -e "^$TAG1\$"`
2828
[[ -n "$MTAG" ]] || { echo "Can't find tag $TAG1" ; exit 1 ; }
2929

30-
# Generate log of recent commits for bugfix-2.0.x and DEST
30+
# Generate log of recent commits for bugfix-2.1.x and DEST
3131

3232
TMPDIR=`mktemp -d`
3333
LOGB="$TMPDIR/log-bf.txt"
3434
LOG2="$TMPDIR/log-2x.txt"
3535
TMPF="$TMPDIR/tmp.txt"
3636
SCRF="$TMPDIR/update-$DEST.sh"
3737

38-
git checkout bugfix-2.0.x
39-
git log --pretty="[%h] %s" bf-$TAG1..$TAG2 | grep -v '\[cron\]' | $SED '1!G;h;$!d' >"$LOGB"
38+
git checkout bugfix-2.1.x
39+
git log --pretty="[%h] %s" dev-$TAG1..$TAG2 | grep -v '\[cron\]' | $SED '1!G;h;$!d' >"$LOGB"
4040

4141
git checkout $DEST
42-
git log --pretty="[%h] %s" $TAG1..$TAG2 | $SED '1!G;h;$!d' >"$LOG2" || { echo "Can't find tag bf-$TAG1" ; exit 1 ; }
42+
git log --pretty="[%h] %s" $TAG1..$TAG2 | $SED '1!G;h;$!d' >"$LOG2" || { echo "Can't find tag dev-$TAG1" ; exit 1 ; }
4343

4444
# Go through commit text from DEST removing all matches from the bugfix log
4545

config/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
Marlin configurations for specific machines are now maintained in their own repository at:
44

5-
## https://github.com/MarlinFirmware/Configurations/tree/bugfix-2.0.x
5+
## https://github.com/MarlinFirmware/Configurations/tree/bugfix-2.1.x
66

7-
Configuration files for use with the nightly `bugfix-2.0.x` branch can be downloaded from:
7+
Configuration files for use with the nightly `bugfix-2.1.x` branch can be downloaded from:
88

9-
## https://github.com/MarlinFirmware/Configurations/archive/bugfix-2.0.x.zip
9+
## https://github.com/MarlinFirmware/Configurations/archive/bugfix-2.1.x.zip

0 commit comments

Comments
 (0)