Skip to content

Commit

Permalink
Release 0.13 (#81)
Browse files Browse the repository at this point in the history
* Release 0.13

* Fix linting
  • Loading branch information
rytilahti authored Sep 1, 2020
1 parent 2714a9a commit 03677b2
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "GPL-3.0"
Expand Down
3 changes: 1 addition & 2 deletions songpal/containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,7 @@ def __str__(self):

@attr.s
class Zone:
"""Zone information.
"""
"""Zone information."""

make = classmethod(make)

Expand Down
2 changes: 1 addition & 1 deletion songpal/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# flake8: noqa
__version__ = "0.12"
__version__ = "0.13"

0 comments on commit 03677b2

Please sign in to comment.