diff --git a/CHANGELOG.md b/CHANGELOG.md index 09d000d8b..cb78c2f2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ # Changelog +## [1.5.5] - 01-11-2022 + +### Added + +- added dummy configuration override files tu support [µCNC config builder web tool](https://paciente8159.github.io/uCNC-config-builder/) (#325) + +### Fixed + +- fixed PROBE ISR issues on STM32 (#322) +- removed deprecated config that prevented probe from working correctly if PROBE_ISR was not configured (#322) + ## [1.5.4] - 25-10-2022 ### Fixed @@ -1051,6 +1062,7 @@ Version 1.1.0 comes with many added features and improvements over the previous ### Initial release +[1.5.5]: https://github.com/Paciente8159/uCNC/releases/tag/v1.5.5 [1.5.4]: https://github.com/Paciente8159/uCNC/releases/tag/v1.5.4 [1.5.3]: https://github.com/Paciente8159/uCNC/releases/tag/v1.5.3 [1.5.2]: https://github.com/Paciente8159/uCNC/releases/tag/v1.5.2 diff --git a/README.md b/README.md index 993ea42da..66a89b0a1 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ Heavily inspired by [Grbl](https://github.com/gnea/grbl) and [LinuxCNC](http://l You can navigate the [project wiki](https://github.com/Paciente8159/uCNC/wiki) to find out more on how to use it. You can expand µCNC using via modules. The available modules are at the [µCNC-modules repository](https://github.com/Paciente8159/uCNC-modules) +You can now also use [µCNC config builder web tool](https://paciente8159.github.io/uCNC-config-builder/) to generate the files needed to adapt µCNC to your board. ## Supporting the project diff --git a/uCNC/src/cnc_build.h b/uCNC/src/cnc_build.h index c1196829d..5d44dcbd4 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.5" -#define CNC_PATCH_VERSION ".4" +#define CNC_PATCH_VERSION ".5" #define CNC_VERSION CNC_MAJOR_MINOR_VERSION CNC_PATCH_VERSION