diff --git a/CHANGELOG.md b/CHANGELOG.md index b5e112e..22c07c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.6.0](https://github.com/deviantintegral/flameconnect/compare/v0.5.3...v0.6.0) (2026-03-11) + + +### Features + +* add --debug flag for HTTP request/response logging with credential redaction ([#80](https://github.com/deviantintegral/flameconnect/issues/80)) ([050e74d](https://github.com/deviantintegral/flameconnect/commit/050e74d110fbc08b367f4973c475743394b29cef)) + + +### Bug Fixes + +* handle ResultCode in get_fire_overview to prevent crash when offline ([#81](https://github.com/deviantintegral/flameconnect/issues/81)) ([bb3eb7a](https://github.com/deviantintegral/flameconnect/commit/bb3eb7a45402f4749a2d0ef774d295e59cb43341)) + ## [0.5.3](https://github.com/deviantintegral/flameconnect/compare/v0.5.2...v0.5.3) (2026-03-08) diff --git a/pyproject.toml b/pyproject.toml index d295722..71902ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "flameconnect" -version = "0.5.3" +version = "0.6.0" 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 702c6b1..72ef580 100644 --- a/src/flameconnect/__init__.py +++ b/src/flameconnect/__init__.py @@ -2,7 +2,7 @@ from __future__ import annotations -__version__ = "0.5.3" +__version__ = "0.6.0" from flameconnect.auth import AbstractAuth, MsalAuth, TokenAuth from flameconnect.client import FlameConnectClient diff --git a/uv.lock b/uv.lock index f8a335d..e2cb193 100644 --- a/uv.lock +++ b/uv.lock @@ -393,7 +393,7 @@ wheels = [ [[package]] name = "flameconnect" -version = "0.5.3" +version = "0.6.0" source = { editable = "." } dependencies = [ { name = "aiohttp" },