From 0b6673e7f59a193e77b9647b9a78ecc6c6dfefef Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sat, 15 Dec 2012 01:46:59 +0100 Subject: [PATCH] mpd: Bump protocol version to 0.17.0 --- docs/changes.rst | 23 ++++++++++++----------- mopidy/frontends/mpd/protocol/__init__.py | 4 ++-- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/docs/changes.rst b/docs/changes.rst index e313c540..6a5aa572 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -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) diff --git a/mopidy/frontends/mpd/protocol/__init__.py b/mopidy/frontends/mpd/protocol/__init__.py index 6afde4b9..1827624b 100644 --- a/mopidy/frontends/mpd/protocol/__init__.py +++ b/mopidy/frontends/mpd/protocol/__init__.py @@ -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'])