Skip to content

Commit 03677b2

Browse files
authored
Release 0.13 (#81)
* Release 0.13 * Fix linting
1 parent 2714a9a commit 03677b2

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [0.13](https://github.com/rytilahti/python-songpal/tree/0.13) (2020-09-01)
4+
5+
[Full Changelog](https://github.com/rytilahti/python-songpal/compare/0.12...0.13)
6+
7+
**Fixed bugs:**
8+
9+
- group abort command is not working [\#63](https://github.com/rytilahti/python-songpal/issues/63)
10+
11+
**Merged pull requests:**
12+
13+
- Add Group commands to readme [\#79](https://github.com/rytilahti/python-songpal/pull/79) ([maximoei](https://github.com/maximoei))
14+
- Fix broken group command to use correct SessionID [\#77](https://github.com/rytilahti/python-songpal/pull/77) ([maximoei](https://github.com/maximoei))
15+
- Add @coro for group commands [\#76](https://github.com/rytilahti/python-songpal/pull/76) ([maximoei](https://github.com/maximoei))
16+
- Added STR-ZA810ES devinfo [\#75](https://github.com/rytilahti/python-songpal/pull/75) ([rfeagley](https://github.com/rfeagley))
17+
318
## [0.12](https://github.com/rytilahti/python-songpal/tree/0.12) (2020-04-26)
419

520
[Full Changelog](https://github.com/rytilahti/python-songpal/compare/0.11.2...0.12)
@@ -18,6 +33,8 @@
1833

1934
**Merged pull requests:**
2035

36+
- fix azure pipelines to use poetry [\#74](https://github.com/rytilahti/python-songpal/pull/74) ([rytilahti](https://github.com/rytilahti))
37+
- Prepare 0.12 [\#73](https://github.com/rytilahti/python-songpal/pull/73) ([rytilahti](https://github.com/rytilahti))
2138
- Handles InvalidURL and ClientConnectionError exceptions [\#72](https://github.com/rytilahti/python-songpal/pull/72) ([shenxn](https://github.com/shenxn))
2239
- add PlaybackFunctionChange notification [\#71](https://github.com/rytilahti/python-songpal/pull/71) ([rytilahti](https://github.com/rytilahti))
2340
- add SRS-X99 devinfo [\#70](https://github.com/rytilahti/python-songpal/pull/70) ([FaintGhost](https://github.com/FaintGhost))

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "python-songpal"
3-
version = "0.12"
3+
version = "0.13"
44
description = "Python library for interfacing with Sony's Songpal devices"
55
authors = ["Teemu R <[email protected]>"]
66
license = "GPL-3.0"

songpal/containers.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,8 +344,7 @@ def __str__(self):
344344

345345
@attr.s
346346
class Zone:
347-
"""Zone information.
348-
"""
347+
"""Zone information."""
349348

350349
make = classmethod(make)
351350

songpal/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# flake8: noqa
2-
__version__ = "0.12"
2+
__version__ = "0.13"

0 commit comments

Comments
 (0)