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 @@
{
".": "3.6.0"
".": "4.0.0"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.0.0](https://github.com/svasek/python-neopool-modbus/compare/v3.6.0...v4.0.0) (2026-07-07)


### ⚠ BREAKING CHANGES

* πŸ’₯ rename HIDRO/ION Low Flow status keys to Low + add Redox Low ([#40](https://github.com/svasek/python-neopool-modbus/issues/40))
* πŸ’₯ add high-level relay / setpoint / flag API ([#39](https://github.com/svasek/python-neopool-modbus/issues/39))

### ✨ Features

* πŸ’₯ add high-level relay / setpoint / flag API ([#39](https://github.com/svasek/python-neopool-modbus/issues/39)) ([30a5a8e](https://github.com/svasek/python-neopool-modbus/commit/30a5a8e3cb6356ada4e77cb47796069d51e5a899))
* πŸ’₯ rename HIDRO/ION Low Flow status keys to Low + add Redox Low ([#40](https://github.com/svasek/python-neopool-modbus/issues/40)) ([61f9747](https://github.com/svasek/python-neopool-modbus/commit/61f974764609b4c0979b5d7e67375edb2293ba70)), closes [#33](https://github.com/svasek/python-neopool-modbus/issues/33)

## [3.6.0](https://github.com/svasek/python-neopool-modbus/compare/v3.5.0...v3.6.0) (2026-07-02)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "neopool-modbus"
version = "3.6.0"
version = "4.0.0"
description = "Async Python client for Sugar Valley NeoPool / VistaPool / Hidrolife Modbus pool controllers"
readme = "README.md"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/neopool_modbus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
)
from .probe import async_probe_serial

__version__ = "3.6.0"
__version__ = "4.0.0"

__all__ = [
"NeoPoolConnectionError",
Expand Down