From: Kaliko Jack Date: Tue, 29 Jan 2019 16:24:45 +0000 (+0100) Subject: Bump version, update copyright X-Git-Tag: v0.4.4~9 X-Git-Url: https://git.kaliko.me/?p=python-musicpd.git;a=commitdiff_plain;h=bd37d5f4a208c33ecf2dd53e11e93eb33ad9f3c3 Bump version, update copyright --- diff --git a/CHANGES.txt b/CHANGES.txt index 2fdd532..b4f1fba 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,11 @@ python-musicpd Changes List =========================== +Changes in 0.4.4 UNRELEASED +--------------------------- + +* Add partition commands (Thanks Naglis Jonaitis) + Changes in 0.4.3 ---------------- diff --git a/musicpd.py b/musicpd.py index 192f6f3..6e54b56 100644 --- a/musicpd.py +++ b/musicpd.py @@ -1,6 +1,7 @@ # python-musicpd: Python MPD client library # Copyright (C) 2008-2010 J. Alexander Treuman -# Copyright (C) 2012-2018 Kaliko Jack +# Copyright (C) 2012-2019 Kaliko Jack +# Copyright (C) 2019 Naglis Jonaitis # # python-musicpd is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by @@ -27,7 +28,7 @@ HELLO_PREFIX = "OK MPD " ERROR_PREFIX = "ACK " SUCCESS = "OK" NEXT = "list_OK" -VERSION = '0.4.3' +VERSION = '0.4.4' def iterator_wrapper(func):