Update changelog for v0.6.1 release
This commit is contained in:
parent
ba842d344d
commit
5528edd3ad
@ -5,8 +5,12 @@ Changes
|
||||
This change log is used to track all major changes to Mopidy.
|
||||
|
||||
|
||||
v0.7.0 (in development)
|
||||
=======================
|
||||
v0.6.1 (2011-12-28)
|
||||
===================
|
||||
|
||||
This is a maintenance release to make Mopidy 0.6 work with pyspotify >= 1.5,
|
||||
which Mopidy's develop branch have supported for a long time. This should also
|
||||
make the Debian packages work out of the box again.
|
||||
|
||||
**Important changes**
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ import os
|
||||
|
||||
from subprocess import PIPE, Popen
|
||||
|
||||
VERSION = (0, 7, 0)
|
||||
VERSION = (0, 6, 1)
|
||||
|
||||
DATA_PATH = os.path.join(glib.get_user_data_dir(), 'mopidy')
|
||||
CACHE_PATH = os.path.join(glib.get_user_cache_dir(), 'mopidy')
|
||||
|
||||
@ -24,7 +24,7 @@ class VersionTest(unittest.TestCase):
|
||||
self.assert_(SV('0.4.1') < SV('0.5.0'))
|
||||
self.assert_(SV('0.5.0') < SV('0.6.0'))
|
||||
self.assert_(SV('0.6.0') < SV(get_plain_version()))
|
||||
self.assert_(SV(get_plain_version()) < SV('0.7.1'))
|
||||
self.assert_(SV(get_plain_version()) < SV('0.7.0'))
|
||||
|
||||
def test_get_platform_contains_platform(self):
|
||||
self.assert_(platform.platform() in get_platform())
|
||||
|
||||
Loading…
Reference in New Issue
Block a user