* Switch back to gztar (even though official python doc mention xztar, PEP 527
   considers only gztar and zip)
 * Add binarylimit command
+* Add getvol command
 
 
 Changes in 0.5.1
 
    print(' '.join([cmd for cmd in musicpd.MPDClient()._commands.keys()]))
 
 
-List, last updated for v0.5.0:
+List, last updated for v0.6.0:
 
 .. literalinclude:: commands.txt
 
 random             <bool>                  -> fetch_nothing
 repeat             <bool>                  -> fetch_nothing
 setvol             <int>                   -> fetch_nothing
+getvol                                     -> fetch_object
 single             <bool>                  -> fetch_nothing
 replay_gain_mode   <str>                   -> fetch_nothing
 replay_gain_status                         -> fetch_item
 
             "random":             self._fetch_nothing,
             "repeat":             self._fetch_nothing,
             "setvol":             self._fetch_nothing,
+            "getvol":             self._fetch_object,
             "single":             self._fetch_nothing,
             "replay_gain_mode":   self._fetch_nothing,
             "replay_gain_status": self._fetch_item,