mpd: Bump protocol version to 0.17.0

This commit is contained in:
Stein Magnus Jodal 2012-12-15 01:46:59 +01:00
parent b43fc2ebe9
commit 0b6673e7f5
2 changed files with 14 additions and 13 deletions

View File

@ -10,21 +10,22 @@ v0.11.0 (in development)
**MPD frontend**
- Add support for ``seekcur`` command added in MPD 0.17.
- Add support for ``config`` command added in MPD 0.17.
- Add support for loading a range of tracks from a playlist to the ``load``
command, as added in MPD 0.17.
- Add support for the ``findadd`` command.
- Add support for ``searchadd`` command added in MPD 0.17.
- Updated to match the MPD 0.17 protocol (Fixes: :issue:`228`):
- Add support for ``searchaddpl`` command added in MPD 0.17.
- Add support for ``seekcur`` command.
- Add empty stubs for channel commands for client to client communication,
which was added in MPD 0.17.
- Add support for ``config`` command.
- Add support for loading a range of tracks from a playlist to the ``load``
command.
- Add support for ``searchadd`` command.
- Add support for ``searchaddpl`` command.
- Add empty stubs for channel commands for client to client communication.
v0.10.0 (2012-12-12)

View File

@ -21,8 +21,8 @@ ENCODING = 'UTF-8'
#: The MPD protocol uses ``\n`` as line terminator.
LINE_TERMINATOR = '\n'
#: The MPD protocol version is 0.16.0.
VERSION = '0.16.0'
#: The MPD protocol version is 0.17.0.
VERSION = '0.17.0'
MpdCommand = namedtuple('MpdCommand', ['name', 'auth_required'])