From 0155ebc3c0bc5a183e16f3dd116b3c5f3b45c1a8 Mon Sep 17 00:00:00 2001 From: Teemu R Date: Fri, 3 Jul 2020 20:34:16 +0200 Subject: [PATCH] Prepare 0.5.2.1 with a quick minor fix for vacuum gen1 fan speed detection. (#749) [Full Changelog](https://github.com/rytilahti/python-miio/compare/0.5.2...0.5.2.1) **Merged pull requests:** - vacuum: Catch DeviceInfoUnavailableException for model detection [\#748](https://github.com/rytilahti/python-miio/pull/748) ([rytilahti](https://github.com/rytilahti)) --- CHANGELOG.md | 11 +++++++++++ RELEASING.md | 2 +- pyproject.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bf6c8aab..787a4bb0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log + +## [0.5.2.1](https://github.com/rytilahti/python-miio/tree/0.5.2.1) (2020-07-03) + +A quick minor fix for vacuum gen1 fan speed detection. + +[Full Changelog](https://github.com/rytilahti/python-miio/compare/0.5.2...0.5.2.1) + +**Merged pull requests:** + +- vacuum: Catch DeviceInfoUnavailableException for model detection [\#748](https://github.com/rytilahti/python-miio/pull/748) ([rytilahti](https://github.com/rytilahti)) + ## [0.5.2](https://github.com/rytilahti/python-miio/tree/0.5.2) (2020-07-03) This release brings several improvements to the gateway support, thanks to @starkillerOG as well as some minor improvements and fixes to some other parts. diff --git a/RELEASING.md b/RELEASING.md index c66f2f0a1..d5e59c74a 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -30,7 +30,7 @@ git commit -av 5. Tag a release (and add short changelog as a tag commit message) ```bash -git tag -a 0.3.1 +git tag -a $NEW_RELEASE ``` 6. Push to git diff --git a/pyproject.toml b/pyproject.toml index c39229f87..08fb277ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "python-miio" -version = "0.5.2" +version = "0.5.2.1" description = "Python library for interfacing with Xiaomi smart appliances" authors = ["Teemu R "] repository = "https://github.com/rytilahti/python-miio"