Release v0.7.1

This commit is contained in:
Stein Magnus Jodal 2012-04-22 01:30:20 +02:00
parent 4ea3bb1167
commit 1dae3442e0
3 changed files with 16 additions and 3 deletions

View File

@ -4,6 +4,18 @@ Changes
This change log is used to track all major changes to Mopidy.
v0.7.1 (2012-04-22)
===================
This is a maintenance release to make Mopidy 0.6 work with pyspotify >= 1.7.
**Changes**
- Don't override pyspotify's ``notify_main_thread`` callback. The default
implementation is sensible, while our override did nothing.
v0.7.0 (2012-02-25)
===================

View File

@ -8,7 +8,7 @@ import os
from subprocess import PIPE, Popen
VERSION = (0, 7, 0)
VERSION = (0, 7, 1)
DATA_PATH = os.path.join(str(glib.get_user_data_dir()), 'mopidy')
CACHE_PATH = os.path.join(str(glib.get_user_cache_dir()), 'mopidy')

View File

@ -24,8 +24,9 @@ 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('0.6.1'))
self.assert_(SV('0.6.1') < SV(get_plain_version()))
self.assert_(SV(get_plain_version()) < SV('0.7.1'))
self.assert_(SV('0.6.1') < SV('0.7.0'))
self.assert_(SV('0.7.0') < SV(get_plain_version()))
self.assert_(SV(get_plain_version()) < SV('0.7.2'))
def test_get_platform_contains_platform(self):
self.assert_(platform.platform() in get_platform())