Skip to content

Commit db3f38d

Browse files
committed
Update version number and change log
1 parent ad3b250 commit db3f38d

File tree

6 files changed

+18
-8
lines changed

6 files changed

+18
-8
lines changed

.bumpversion.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 5.7.0-dev+2023-06-22
2+
current_version = 5.7.0-stable+2023-07-23
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?\+(?P<date>\d{4}\-\d{2}\-\d{2})
@@ -11,7 +11,7 @@ values =
1111
dev
1212
stable
1313

14-
[bumpversion:file:Marlin/src/advi3pp/versions.h]
14+
[bumpversion:file:Marlin/Configuration.h]
1515
serialize = {major}{minor}{patch}
1616
search = advi3_pp_version = 0x{current_version}
1717
replace = advi3_pp_version = 0x{new_version}

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,16 @@
22

33
## 5.7.0 (2023-06-22)
44

5-
Align with Marlin 2.1.2.1
5+
* **#332** - [SD card sorting is not working as expected bug](https://github.com/andrivet/ADVi3pp/issues/332)
6+
* **#329** - [Add a way to cancel Load and Unload filament enhancement](https://github.com/andrivet/ADVi3pp/issues/329)
7+
* **#327** - [For Mark II printers, select by default the Mark II offsets for the probe enhancement](https://github.com/andrivet/ADVi3pp/issues/327)
8+
* **#326** - [Synchronise sources with Marlin 2.1.2 enhancement](https://github.com/andrivet/ADVi3pp/issues/326)
9+
* **#322** - [Save the last temperature used to Load/Unload and restore it on boot enhancement](https://github.com/andrivet/ADVi3pp/issues/322)
10+
* **#319** - [Use Touch Switch Mode (SW) for BLTouch enhancement](https://github.com/andrivet/ADVi3pp/issues/319)
11+
* **#315** - [Beep in Preheat when the target temperature is achieved enhancement](https://github.com/andrivet/ADVi3pp/issues/315)
12+
* **#314** - [Apply the setting under Settings / Beeper / Beep duration to M300 without P argument enhancement](https://github.com/andrivet/ADVi3pp/issues/314)
13+
* **#262** - [Add BLTouch support for i3 plus Mark II enhancement](https://github.com/andrivet/ADVi3pp/issues/262)
14+
* **#115** - [Allow Temp Change during filament change enhancement](https://github.com/andrivet/ADVi3pp/issues/115)
615

716
## 5.6.0 (2023-03-19)
817

-944 KB
Binary file not shown.

Marlin/src/inc/Version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
* vendor name, download location, GitHub account, etc.
5151
*/
5252
#ifndef DETAILED_BUILD_VERSION
53-
#define DETAILED_BUILD_VERSION SHORT_BUILD_VERSION " (" ADVi3PP_NAME " 5.7.0-dev)"
53+
#define DETAILED_BUILD_VERSION SHORT_BUILD_VERSION " (" ADVi3PP_NAME " 5.7.0)"
5454
#endif
5555

5656
/**
@@ -59,7 +59,7 @@
5959
* version was tagged.
6060
*/
6161
#ifndef STRING_DISTRIBUTION_DATE
62-
#define STRING_DISTRIBUTION_DATE "2023-06-22"
62+
#define STRING_DISTRIBUTION_DATE "2023-07-23"
6363
#endif
6464

6565
/**

Scripts/create-release.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ echo "======================================"
2626
echo
2727
echo "BE SURE YOU HAVE CHANGED:"
2828
echo "- CHANGELOG.md"
29-
echo "- cd .. ; advbumpversion --allow-dirty --no-commit --no-tag release ; cd Scripts"
29+
echo "- cd .. ; bump2version --allow-dirty --no-commit --no-tag release ; cd Scripts"
3030
echo "- User Manual if necessary"
3131
echo
3232
pause 'Press any key to continue or Ctrl-C to abort...'
@@ -67,7 +67,7 @@ echo "***** Generate other microSD images..."
6767
echo
6868
echo "***** Compile Mainboard firmwares..."
6969
echo
70-
platformio -f -c clion run -d "${advi3pp}" -e advi3pp_51 -e advi3pp_51_bltouch -e advi3pp_52c -e advi3pp_52c_bltouch -e advi3pp_54
70+
platformio -f -c clion run -d "${advi3pp}" -e advi3pp_51 -e advi3pp_51_bltouch -e advi3pp_52c -e advi3pp_52c_bltouch -e advi3pp_54 -e advi3pp_54_bltouch
7171
ret=$?; if [[ $ret != 0 ]]; then exit $ret; fi
7272

7373
echo
@@ -78,6 +78,7 @@ cp "${advi3pp}/.pio/build/advi3pp_51_bltouch/firmware.hex" "${release}/ADVi3pp-M
7878
cp "${advi3pp}/.pio/build/advi3pp_52c/firmware.hex" "${release}/ADVi3pp-Mainboard-52c-${version}.hex"
7979
cp "${advi3pp}/.pio/build/advi3pp_52c_bltouch/firmware.hex" "${release}/ADVi3pp-Mainboard-52c-BLTouch-${version}.hex"
8080
cp "${advi3pp}/.pio/build/advi3pp_54/firmware.hex" "${release}/ADVi3pp-Mainboard-54-${version}.hex"
81+
cp "${advi3pp}/.pio/build/advi3pp_54_bltouch/firmware.hex" "${release}/ADVi3pp-Mainboard-54-BLTouch-${version}.hex"
8182
ret=$?; if [[ $ret != 0 ]]; then exit $ret; fi
8283

8384
echo

Scripts/version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version="5.7.0-dev"
1+
version="5.7.0"

0 commit comments

Comments
 (0)