]> kaliko git repositories - python-musicpd.git/commitdiff
Bump version, update copyright
authorKaliko Jack <kaliko@azylum.org>
Tue, 29 Jan 2019 16:24:45 +0000 (17:24 +0100)
committerKaliko Jack <kaliko@azylum.org>
Tue, 29 Jan 2019 16:24:45 +0000 (17:24 +0100)
CHANGES.txt
musicpd.py

index 2fdd53271365ef59031e22a756bad8127b265a77..b4f1fbac5487dd2bd14c6dc2101ef0dfcc4332bb 100644 (file)
@@ -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
 ----------------
 
index 192f6f342c78a7bd349d2ad17aa8653ac853d2ef..6e54b5684433ac5ce42e51deb2365426e4e99276 100644 (file)
@@ -1,6 +1,7 @@
 # python-musicpd: Python MPD client library
 # Copyright (C) 2008-2010  J. Alexander Treuman <jat@spatialrift.net>
-# Copyright (C) 2012-2018  Kaliko Jack <kaliko@azylum.org>
+# Copyright (C) 2012-2019  Kaliko Jack <kaliko@azylum.org>
+# Copyright (C) 2019       Naglis Jonaitis <naglis@mailbox.org>
 #
 # 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):