diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 32dbe0e2..9d5573ce 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.0.0" + ".": "5.0.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 882a274a..6c9c7ff2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [5.0.1](https://github.com/smart-swimmingpool/pool-controller/compare/v5.0.0...v5.0.1) (2026-08-20) + + +### Bug Fixes + +* **web:** stop telemetry poll from overwriting config edits ([#185](https://github.com/smart-swimmingpool/pool-controller/issues/185)) ([71ee560](https://github.com/smart-swimmingpool/pool-controller/commit/71ee560ae18c8539bf23de4c54c4ca71ab645e69)) + ## [5.0.0](https://github.com/smart-swimmingpool/pool-controller/compare/v4.2.1...v5.0.0) (2026-08-18) diff --git a/platformio.ini b/platformio.ini index 291ee75a..cce7d873 100644 --- a/platformio.ini +++ b/platformio.ini @@ -32,7 +32,7 @@ board = esp32dev framework = arduino build_flags = ; FW_VERSION is auto-maintained by release-please — do not edit manually - '-D FW_VERSION="5.0.0"' # x-release-please-version + '-D FW_VERSION="5.0.1"' # x-release-please-version '-D GITHUB_REPO="smart-swimmingpool/pool-controller"' -D SERIAL_SPEED=${common.serial_speed} -D NORVI_AE01_R @@ -56,7 +56,7 @@ board = esp32-c6-devkitc-1 framework = arduino build_flags = ; FW_VERSION is auto-maintained by release-please — do not edit manually - '-D FW_VERSION="5.0.0"' # x-release-please-version + '-D FW_VERSION="5.0.1"' # x-release-please-version '-D GITHUB_REPO="smart-swimmingpool/pool-controller"' -D SERIAL_SPEED=${common.serial_speed} -D OLIMEX_ESP32_C6_EVB @@ -84,7 +84,7 @@ board = esp32dev framework = arduino build_flags = ; FW_VERSION is auto-maintained by release-please — do not edit manually - '-D FW_VERSION="5.0.0"' # x-release-please-version + '-D FW_VERSION="5.0.1"' # x-release-please-version '-D GITHUB_REPO="smart-swimmingpool/pool-controller"' -D SERIAL_SPEED=${common.serial_speed} -D LOG_BUFFER_SIZE=8192 diff --git a/src/Version.h b/src/Version.h index 13000d0c..e6e1f4a4 100644 --- a/src/Version.h +++ b/src/Version.h @@ -10,7 +10,7 @@ #define VERSION_H #ifndef FW_VERSION -#define FW_VERSION "5.0.0" // x-release-please-version +#define FW_VERSION "5.0.1" // x-release-please-version #endif #endif // VERSION_H