Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "5.0.0"
".": "5.0.1"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
6 changes: 3 additions & 3 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading