From: Kaliko Jack Date: Sun, 23 Mar 2025 12:30:55 +0000 (+0100) Subject: Releasing 0.9.2 X-Git-Tag: v0.9.2^0 X-Git-Url: http://git.kaliko.me/?a=commitdiff_plain;h=57edf01f2d92ba03ead09f4619b4ef40c508a622;p=python-musicpd.git Releasing 0.9.2 --- diff --git a/doc/source/_commands.rst b/doc/source/_commands.rst index b145a92..1f0b5b9 100644 --- a/doc/source/_commands.rst +++ b/doc/source/_commands.rst @@ -1,4 +1,4 @@ -Below the commands list last updated for v0.9.1. +Below the commands list last updated for v0.9.2. Querying MPD’s status ^^^^^^^^^^^^^^^^^^^^^ @@ -79,6 +79,7 @@ Protocol documentation: `Stored playlists list * **listplaylistinfo** -> list[dict] +* **searchplaylist** -> list[dict] * **listplaylists** -> dict * **load** -> None * **playlistadd** -> None @@ -135,6 +136,8 @@ Protocol documentation: `Stickers list * **sticker find** -> list[dict] * **stickernames** -> list +* **stickertypes** -> list +* **stickernamestypes** -> list Connection settings ^^^^^^^^^^^^^^^^^^^ @@ -149,6 +152,12 @@ Protocol documentation: `Connection settings None * **tagtypes clear** -> None * **tagtypes all** -> None +* **protocol** -> list +* **protocol disable** -> None +* **protocol enable** -> None +* **protocol clear** -> None +* **protocol all** -> None +* **protocol available** -> list Partition Commands ^^^^^^^^^^^^^^^^^^ diff --git a/musicpd.py b/musicpd.py index 49d6b3f..af497c1 100644 --- a/musicpd.py +++ b/musicpd.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# SPDX-FileCopyrightText: 2012-2024 kaliko +# SPDX-FileCopyrightText: 2012-2025 kaliko # SPDX-FileCopyrightText: 2021 Wonko der Verständige # SPDX-FileCopyrightText: 2019 Naglis Jonaitis # SPDX-FileCopyrightText: 2019 Bart Van Loon @@ -19,7 +19,7 @@ ERROR_PREFIX = "ACK " SUCCESS = "OK" NEXT = "list_OK" #: Module version -VERSION = '0.9.2.dev1' +VERSION = '0.9.2' #: Seconds before a connection attempt times out #: (overriden by :envvar:`MPD_TIMEOUT` env. var.) CONNECTION_TIMEOUT = 30