From 03677b2a215635a4e9f95ba707d5734d44a75b43 Mon Sep 17 00:00:00 2001 From: Teemu R Date: Tue, 1 Sep 2020 17:44:33 +0200 Subject: [PATCH] Release 0.13 (#81) * Release 0.13 * Fix linting --- CHANGELOG.md | 17 +++++++++++++++++ pyproject.toml | 2 +- songpal/containers.py | 3 +-- songpal/version.py | 2 +- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b701b94..2a11b84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.13](https://github.com/rytilahti/python-songpal/tree/0.13) (2020-09-01) + +[Full Changelog](https://github.com/rytilahti/python-songpal/compare/0.12...0.13) + +**Fixed bugs:** + +- group abort command is not working [\#63](https://github.com/rytilahti/python-songpal/issues/63) + +**Merged pull requests:** + +- Add Group commands to readme [\#79](https://github.com/rytilahti/python-songpal/pull/79) ([maximoei](https://github.com/maximoei)) +- Fix broken group command to use correct SessionID [\#77](https://github.com/rytilahti/python-songpal/pull/77) ([maximoei](https://github.com/maximoei)) +- Add @coro for group commands [\#76](https://github.com/rytilahti/python-songpal/pull/76) ([maximoei](https://github.com/maximoei)) +- Added STR-ZA810ES devinfo [\#75](https://github.com/rytilahti/python-songpal/pull/75) ([rfeagley](https://github.com/rfeagley)) + ## [0.12](https://github.com/rytilahti/python-songpal/tree/0.12) (2020-04-26) [Full Changelog](https://github.com/rytilahti/python-songpal/compare/0.11.2...0.12) @@ -18,6 +33,8 @@ **Merged pull requests:** +- fix azure pipelines to use poetry [\#74](https://github.com/rytilahti/python-songpal/pull/74) ([rytilahti](https://github.com/rytilahti)) +- Prepare 0.12 [\#73](https://github.com/rytilahti/python-songpal/pull/73) ([rytilahti](https://github.com/rytilahti)) - Handles InvalidURL and ClientConnectionError exceptions [\#72](https://github.com/rytilahti/python-songpal/pull/72) ([shenxn](https://github.com/shenxn)) - add PlaybackFunctionChange notification [\#71](https://github.com/rytilahti/python-songpal/pull/71) ([rytilahti](https://github.com/rytilahti)) - add SRS-X99 devinfo [\#70](https://github.com/rytilahti/python-songpal/pull/70) ([FaintGhost](https://github.com/FaintGhost)) diff --git a/pyproject.toml b/pyproject.toml index b12fba0..bf29ea7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "python-songpal" -version = "0.12" +version = "0.13" description = "Python library for interfacing with Sony's Songpal devices" authors = ["Teemu R "] license = "GPL-3.0" diff --git a/songpal/containers.py b/songpal/containers.py index e5e9c19..ff0f455 100644 --- a/songpal/containers.py +++ b/songpal/containers.py @@ -344,8 +344,7 @@ def __str__(self): @attr.s class Zone: - """Zone information. - """ + """Zone information.""" make = classmethod(make) diff --git a/songpal/version.py b/songpal/version.py index ab7fb3c..7caaea4 100644 --- a/songpal/version.py +++ b/songpal/version.py @@ -1,2 +1,2 @@ # flake8: noqa -__version__ = "0.12" +__version__ = "0.13"