diff --git a/CHANGELOG.md b/CHANGELOG.md index 52229e4..e7a1fa3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.6.2](https://github.com/deviantintegral/flameconnect/compare/v0.6.1...v0.6.2) (2026-09-09) + + +### Bug Fixes + +* preserve heat settings when turning on the fireplace ([a2a9e10](https://github.com/deviantintegral/flameconnect/commit/a2a9e10b13a2a046c864003bc11403aefeb875fd)) + ## [0.6.1](https://github.com/deviantintegral/flameconnect/compare/v0.6.0...v0.6.1) (2026-07-03) diff --git a/pyproject.toml b/pyproject.toml index f08c38a..4c45f88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "flameconnect" -version = "0.6.1" +version = "0.6.2" description = "Async Python library for controlling Dimplex, Faber, and Real Flame fireplaces via the Flame Connect cloud API" readme = "README.md" license = "Apache-2.0" diff --git a/src/flameconnect/__init__.py b/src/flameconnect/__init__.py index 6c662ea..892e2ac 100644 --- a/src/flameconnect/__init__.py +++ b/src/flameconnect/__init__.py @@ -2,7 +2,7 @@ from __future__ import annotations -__version__ = "0.6.1" +__version__ = "0.6.2" from flameconnect.auth import AbstractAuth, MsalAuth, TokenAuth from flameconnect.client import FlameConnectClient diff --git a/uv.lock b/uv.lock index 585fcc5..4bc3ef9 100644 --- a/uv.lock +++ b/uv.lock @@ -393,7 +393,7 @@ wheels = [ [[package]] name = "flameconnect" -version = "0.6.1" +version = "0.6.2" source = { editable = "." } dependencies = [ { name = "aiohttp" },