-Below the commands list last updated for v0.9.1.
+Below the commands list last updated for v0.9.2.
 
 Querying MPD’s status
 ^^^^^^^^^^^^^^^^^^^^^
 
 * **listplaylist** -> list
 * **listplaylistinfo** -> list[dict]
+* **searchplaylist** -> list[dict]
 * **listplaylists** -> dict
 * **load** -> None
 * **playlistadd** -> None
 * **sticker list** -> list
 * **sticker find** -> list[dict]
 * **stickernames** -> list
+* **stickertypes** -> list
+* **stickernamestypes** -> list
 
 Connection settings
 ^^^^^^^^^^^^^^^^^^^
 * **tagtypes enable** -> 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
 ^^^^^^^^^^^^^^^^^^
 
 # -*- coding: utf-8 -*-
-# SPDX-FileCopyrightText: 2012-2024  kaliko <kaliko@azylum.org>
+# SPDX-FileCopyrightText: 2012-2025  kaliko <kaliko@azylum.org>
 # SPDX-FileCopyrightText: 2021       Wonko der Verständige <wonko@hanstool.org>
 # SPDX-FileCopyrightText: 2019       Naglis Jonaitis <naglis@mailbox.org>
 # SPDX-FileCopyrightText: 2019       Bart Van Loon <bbb@bbbart.be>
 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