From abe4208b5b4833ea2e58e57fa867528cea87d1ff Mon Sep 17 00:00:00 2001 From: Teemu R Date: Wed, 13 Jul 2022 22:58:56 +0200 Subject: [PATCH] Release 0.2 (#55) This release adds two new backends: bleak and gattlib. Bleak backend is the new default backend which makes this library work also on non-Linux platforms and requires no compiler to be installed. --- CHANGELOG | 18 ++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 5cceb8f..51daa0a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,24 @@ Changelog ========= +0.2 (2022-07-13) +---------------- + +- Add publish to pypi workflow (#54) [Teemu R] + +- Add bleak backend and make it default (#53) [Teemu R] + +- Wrap backend exceptions inside BackendException (#52) [Teemu R] + +- Add mac property to thermostat class (#51) [Teemu R] + +- Update README, pyproject.toml (#49) [Teemu R] + +- Support gattlib as an alternative btle library (#48) [Helmut Grohne] + +- Use poetry, add pre-commit hooks & mass format to modern standards, + add CI (#47) [Teemu R] + 0.1.12 (2021-11-13) ------------------- diff --git a/pyproject.toml b/pyproject.toml index ea04846..ba9fceb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "python-eq3bt" -version = "0.1.12" +version = "0.2" description = "EQ3 bluetooth thermostat support library" license = "MIT" authors = ["Teemu R. ", "Markus Peter "]