From da3bacbe88efdf7089bb0578c03b0d8fdfe050a1 Mon Sep 17 00:00:00 2001 From: Andrew Berry Date: Fri, 27 Feb 2026 16:24:55 -0500 Subject: [PATCH] chore(main): release 0.4.0 --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/flameconnect/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01d77b9..4f625e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.4.0](https://github.com/deviantintegral/flameconnect/compare/v0.3.0...v0.4.0) (2026-02-27) + + +### Features + +* add FireFeatures dataclass and parse feature flags from API ([8ed0c38](https://github.com/deviantintegral/flameconnect/commit/8ed0c38ad3575b94b67dbe330ac743e4f2a2819f)) +* display fire feature flags in CLI status output ([380024a](https://github.com/deviantintegral/flameconnect/commit/380024afa9616364c0c598cbdf28750d0f3b6c3e)) + ## [0.3.0](https://github.com/deviantintegral/flameconnect/compare/v0.2.0...v0.3.0) (2026-02-27) diff --git a/pyproject.toml b/pyproject.toml index 0cf9df5..9eb0ab4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "flameconnect" -version = "0.3.0" +version = "0.4.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 702248e..598fee0 100644 --- a/src/flameconnect/__init__.py +++ b/src/flameconnect/__init__.py @@ -2,7 +2,7 @@ from __future__ import annotations -__version__ = "0.3.0" +__version__ = "0.4.0" from flameconnect.auth import AbstractAuth, MsalAuth, TokenAuth from flameconnect.client import FlameConnectClient