Skip to content

Commit

Permalink
Release 5.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
andrivet committed Feb 27, 2022
1 parent 28a3e2c commit 7bd97ab
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 5.0.2-stable+2021-11-14
current_version = 5.0.3-stable+2022-02-27
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?\+(?P<date>\d{4}\-\d{2}\-\d{2})
Expand Down Expand Up @@ -34,3 +34,4 @@ serialize =
{major}.{minor}.{patch}
search = version="{current_version}"
replace = version="{new_version}"

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ADVi3++ Changelog

## 5.0.3 (2022-02-27)

* **#273** - Loading feedrate is way too fast

## 5.0.2 (2021-11-14)

* **#260** - Fix LCD dimming
Expand Down
2 changes: 1 addition & 1 deletion Marlin/src/advi3pp/versions.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

namespace ADVi3pp {

const uint16_t advi3_pp_version = 0x502;
const uint16_t advi3_pp_version = 0x503;
const uint16_t settings_version = 0x0005; // Version of ADVi3++ settings stored in EEPROM

}
3 changes: 2 additions & 1 deletion Scripts/create-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function pause(){
read -r -s -k "?$*"$'\n'
}

version="5.0.2"
version="5.0.3"

scripts="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
ret=$?; if [[ $ret != 0 ]]; then exit $ret; fi
Expand All @@ -35,6 +35,7 @@ echo
pause 'Press any key to continue or Ctrl-C to abort...'

sudo -v

rm -rf "${release:?}/*"

echo
Expand Down

0 comments on commit 7bd97ab

Please sign in to comment.