From 6fbf3853f27e736f009343ff21f1251eaeaabc61 Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Fri, 5 Apr 2019 11:20:00 +1100 Subject: [PATCH] bpd: bump protocol version to 0.14.0 --- beetsplug/bpd/__init__.py | 2 +- test/test_player.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/bpd/__init__.py b/beetsplug/bpd/__init__.py index 664eaa4bb..fdd78a11f 100644 --- a/beetsplug/bpd/__init__.py +++ b/beetsplug/bpd/__init__.py @@ -39,7 +39,7 @@ from beets import dbcore from beets.mediafile import MediaFile import six -PROTOCOL_VERSION = '0.13.0' +PROTOCOL_VERSION = '0.14.0' BUFSIZE = 1024 HELLO = u'OK MPD %s' % PROTOCOL_VERSION diff --git a/test/test_player.py b/test/test_player.py index 7a29610e3..3fd5910b4 100644 --- a/test/test_player.py +++ b/test/test_player.py @@ -354,7 +354,7 @@ class BPDTestHelper(unittest.TestCase, TestHelper): class BPDTest(BPDTestHelper): def test_server_hello(self): with self.run_bpd(do_hello=False) as client: - self.assertEqual(client.readline(), b'OK MPD 0.13.0\n') + self.assertEqual(client.readline(), b'OK MPD 0.14.0\n') def test_unknown_cmd(self): with self.run_bpd() as client: