Skip to content

Commit e93854f

Browse files
committed
bump version
1 parent c03ef1f commit e93854f

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

doc/changes.rst

+11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
python-mpd2 Changes List
22
========================
33

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+
415
Changes in v3.0.5
516
-----------------
617

mpd/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from enum import Enum
2727

2828

29-
VERSION = (3, 0, 5)
29+
VERSION = (3, 1, 0)
3030
HELLO_PREFIX = "OK MPD "
3131
ERROR_PREFIX = "ACK "
3232
ERROR_PATTERN = re.compile(r"\[(?P<errno>\d+)@(?P<offset>\d+)\]\s+{(?P<command>\w+)}\s+(?P<msg>.*)")

0 commit comments

Comments
 (0)