Merge branch 'master' into develop

This commit is contained in:
Stein Magnus Jodal 2011-12-28 22:15:09 +01:00
commit 4cc7b87669
2 changed files with 25 additions and 10 deletions

View File

@ -4,12 +4,34 @@ Changes
This change log is used to track all major changes to Mopidy.
v0.7.0 (in development)
=======================
**Important changes**
- Nothing yet.
**Changes**
- The MPD command ``playlistinfo`` is now faster, thanks to John Bäckstrand.
- Added the method
:meth:`mopidy.backends.base.CurrentPlaylistController.length()`,
:meth:`mopidy.backends.base.CurrentPlaylistController.index()`, and
:meth:`mopidy.backends.base.CurrentPlaylistController.slice()` to reduce the
need for copying the entire current playlist from one thread to another.
Thanks to John Bäckstrand for pinpointing the issue.
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**
- pyspotify 1.5 or greater is required.
**Changes**
@ -18,14 +40,6 @@ v0.7.0 (in development)
if you use playlist folders, you will no longer get lots of log messages
about bad playlists.
- The MPD command ``playlistinfo`` is now faster, thanks to John Bäckstrand.
- Added the method
:meth:`mopidy.backends.base.CurrentPlaylistController.length()`,
:meth:`mopidy.backends.base.CurrentPlaylistController.index()`, and
:meth:`mopidy.backends.base.CurrentPlaylistController.slice()` to reduce the
need for copying the entire current playlist from one thread to another.
Thanks to John Bäckstrand for pinpointing the issue.
v0.6.0 (2011-10-09)

View File

@ -23,7 +23,8 @@ class VersionTest(unittest.TestCase):
self.assert_(SV('0.4.0') < SV('0.4.1'))
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('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'))
def test_get_platform_contains_platform(self):