From fbc0b471c19d563cfb3c2e41214e0fad5df772cf Mon Sep 17 00:00:00 2001 From: Paciente8159 Date: Fri, 3 Nov 2023 22:18:39 +0000 Subject: [PATCH] version bump --- CHANGELOG.md | 7 +++++++ uCNC/src/cnc_build.h | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9f77eb9b..2d1238f74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ # Changelog +## [1.8.2] - 03-11-2023 + +### Fixed + +- fixed random stalls at the end of a deacceleration motion to a full stop. Under particular condition and due to float rounding errors speed may reach negative values and the motion being unable to continue. (#558) + ## [1.8.1] - 01-11-2023 ### Added @@ -1387,6 +1393,7 @@ Version 1.1.0 comes with many added features and improvements over the previous ### Initial release +[1.8.2]: https://github.com/Paciente8159/uCNC/releases/tag/v1.8.2 [1.8.1]: https://github.com/Paciente8159/uCNC/releases/tag/v1.8.1 [1.8.0]: https://github.com/Paciente8159/uCNC/releases/tag/v1.8.0 [1.7.6]: https://github.com/Paciente8159/uCNC/releases/tag/v1.7.6 diff --git a/uCNC/src/cnc_build.h b/uCNC/src/cnc_build.h index 4073a7dd6..f5d0d6e61 100644 --- a/uCNC/src/cnc_build.h +++ b/uCNC/src/cnc_build.h @@ -25,7 +25,7 @@ extern "C" #endif #define CNC_MAJOR_MINOR_VERSION "1.8" -#define CNC_PATCH_VERSION ".1" +#define CNC_PATCH_VERSION ".2" #define CNC_VERSION CNC_MAJOR_MINOR_VERSION CNC_PATCH_VERSION