File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 1
1
python-mpd2 Changes List
2
2
========================
3
3
4
+ Changes in v3.1.0
5
+ -----------------
6
+
7
+ * fixed multiple use of "group" in list command by @SoongNoonien in https://github.com/Mic92/python-mpd2/pull/187
8
+ * fix unmount command not working by @burrocargado in https://github.com/Mic92/python-mpd2/pull/188
9
+ * added binarylimit command by @SoongNoonien in https://github.com/Mic92/python-mpd2/pull/191
10
+ * Implement abstract socket support by @aurieh in https://github.com/Mic92/python-mpd2/pull/193
11
+ * missing import / wrong variable by @mk-81 in https://github.com/Mic92/python-mpd2/pull/196
12
+ * also test python3.12 by @Mic92 in https://github.com/Mic92/python-mpd2/pull/200
13
+ * asyncio: fix race condition in command queue by @yakshaver2000 in https://github.com/Mic92/python-mpd2/pull/199
14
+
4
15
Changes in v3.0.5
5
16
-----------------
6
17
Original file line number Diff line number Diff line change 26
26
from enum import Enum
27
27
28
28
29
- VERSION = (3 , 0 , 5 )
29
+ VERSION = (3 , 1 , 0 )
30
30
HELLO_PREFIX = "OK MPD "
31
31
ERROR_PREFIX = "ACK "
32
32
ERROR_PATTERN = re .compile (r"\[(?P<errno>\d+)@(?P<offset>\d+)\]\s+{(?P<command>\w+)}\s+(?P<msg>.*)" )
You can’t perform that action at this time.
0 commit comments