From 3c8a6a15c3f1601986ad782f82140f14c5a3ef8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milo=C5=A1=20Sva=C5=A1ek?= Date: Wed, 9 Sep 2026 21:28:03 +0200 Subject: [PATCH] =?UTF-8?q?chore(main):=20=F0=9F=94=96=20release=20v4.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 2 +- src/neopool_modbus/__init__.py | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 38625df..c0f9e2d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.6.2" + ".": "4.7.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e6872f..4faa9fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ 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.7.0](https://github.com/svasek/python-neopool-modbus/compare/v4.6.2...v4.7.0) (2026-09-09) + + +### ✨ Features + +* **decoders:** ✨ decode AUX relay operating mode ([#72](https://github.com/svasek/python-neopool-modbus/issues/72)) ([00e43be](https://github.com/svasek/python-neopool-modbus/commit/00e43be34f56fe4b2e8d08ac874e3145f8032828)) + + +### 🐛 Bug Fixes + +* **client:** 🐛 mask and RMW packed heating/intelligent setpoint ([#74](https://github.com/svasek/python-neopool-modbus/issues/74)) ([69d6e26](https://github.com/svasek/python-neopool-modbus/commit/69d6e267fa41a36a3fb09cd11d8c1ee5ca697b59)) + ## [4.6.2](https://github.com/svasek/python-neopool-modbus/compare/v4.6.1...v4.6.2) (2026-08-31) diff --git a/pyproject.toml b/pyproject.toml index b11d8ad..84b01c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "neopool-modbus" -version = "4.6.2" +version = "4.7.0" description = "Async Python client for Sugar Valley NeoPool / VistaPool / Hidrolife Modbus pool controllers" readme = "README.md" license = "Apache-2.0" diff --git a/src/neopool_modbus/__init__.py b/src/neopool_modbus/__init__.py index 792766d..1a38b85 100644 --- a/src/neopool_modbus/__init__.py +++ b/src/neopool_modbus/__init__.py @@ -40,7 +40,7 @@ ) from .probe import async_probe_serial -__version__ = "4.6.2" +__version__ = "4.7.0" __all__ = [ "InvalidStateReason",