diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f625e8..845341f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.4.1](https://github.com/deviantintegral/flameconnect/compare/v0.4.0...v0.4.1) (2026-02-28) + + +### Bug Fixes + +* **security:** apply fixes for URL injection and redirect URI validation ([#49](https://github.com/deviantintegral/flameconnect/issues/49)) ([caba34c](https://github.com/deviantintegral/flameconnect/commit/caba34c8713a8f928d52e66585979af94421484c)) + + +### Documentation + +* link Home Assistant custom component from README ([#46](https://github.com/deviantintegral/flameconnect/issues/46)) ([f44f88f](https://github.com/deviantintegral/flameconnect/commit/f44f88f3a04a1a2452ae274c78f2f7eb027fa0a3)) + ## [0.4.0](https://github.com/deviantintegral/flameconnect/compare/v0.3.0...v0.4.0) (2026-02-27) diff --git a/pyproject.toml b/pyproject.toml index 9eb0ab4..78e1228 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "flameconnect" -version = "0.4.0" +version = "0.4.1" 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 598fee0..2aebeb3 100644 --- a/src/flameconnect/__init__.py +++ b/src/flameconnect/__init__.py @@ -2,7 +2,7 @@ from __future__ import annotations -__version__ = "0.4.0" +__version__ = "0.4.1" from flameconnect.auth import AbstractAuth, MsalAuth, TokenAuth from flameconnect.client import FlameConnectClient diff --git a/uv.lock b/uv.lock index 8a05af8..43a8de1 100644 --- a/uv.lock +++ b/uv.lock @@ -384,7 +384,7 @@ wheels = [ [[package]] name = "flameconnect" -version = "0.4.0" +version = "0.4.1" source = { editable = "." } dependencies = [ { name = "aiohttp" },