From e067279ae59d940f4ce8882f2f393d62e8ea2cce Mon Sep 17 00:00:00 2001 From: Teemu R Date: Wed, 24 Mar 2021 23:07:16 +0100 Subject: [PATCH] Prepare 0.5.5.2 (#988) --- CHANGELOG.md | 21 +++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d90812d6..19c12181f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Change Log +## [0.5.5.2](https://github.com/rytilahti/python-miio/tree/0.5.5.2) (2021-03-24) + +This release is mainly to re-add mapping parameter to MiotDevice constructor for backwards-compatibility reasons, +but adds also PyYAML dependency and improves MiOT support to allow limiting how many properties to query at once. + +[Full Changelog](https://github.com/rytilahti/python-miio/compare/0.5.5.1...0.5.5.2) + +**Implemented enhancements:** + +- Please add back the mapping parameter to `MiotDevice` constructor [\#982](https://github.com/rytilahti/python-miio/issues/982) + +**Fixed bugs:** + +- Missing dependency: pyyaml [\#986](https://github.com/rytilahti/python-miio/issues/986) + +**Merged pull requests:** + +- Add pyyaml dependency [\#987](https://github.com/rytilahti/python-miio/pull/987) ([rytilahti](https://github.com/rytilahti)) +- Re-add mapping parameter to MiotDevice ctor [\#985](https://github.com/rytilahti/python-miio/pull/985) ([rytilahti](https://github.com/rytilahti)) +- Move hardcoded parameter `max\_properties` [\#981](https://github.com/rytilahti/python-miio/pull/981) ([ha0y](https://github.com/ha0y)) + ## [0.5.5.1](https://github.com/rytilahti/python-miio/tree/0.5.5.1) (2021-03-20) This release fixes a single regression of non-existing sequence file for those users who never used mirobo/miiocli vacuum previously. diff --git a/pyproject.toml b/pyproject.toml index 8e48a3218..96217604b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "python-miio" -version = "0.5.5.1" +version = "0.5.5.2" description = "Python library for interfacing with Xiaomi smart appliances" authors = ["Teemu R "] repository = "https://github.com/rytilahti/python-miio"