Update changelog for v0.6.1 release

This commit is contained in:
Stein Magnus Jodal 2011-12-28 21:45:08 +01:00
parent ba842d344d
commit 5528edd3ad
3 changed files with 8 additions and 4 deletions

View File

@ -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**

View File

@ -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')

View File

@ -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())