Prepare for maintenance release

This commit is contained in:
Stein Magnus Jodal 2012-05-07 22:56:09 +02:00
parent aac7f73868
commit 1f12951fa2
3 changed files with 6 additions and 7 deletions

View File

@ -5,12 +5,11 @@ Changes
This change log is used to track all major changes to Mopidy.
v0.8 (in development)
=====================
v0.7.2 (2012-05-07)
===================
**Important changes**
- Nothing so far
This is a maintenance release to make Mopidy 0.7 build on systems without all
of Mopidy's runtime dependencies, like Launchpad PPAs.
**Changes**

View File

@ -8,7 +8,7 @@ from subprocess import PIPE, Popen
import glib
__version__ = '0.8'
__version__ = '0.7.2'
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

@ -27,7 +27,7 @@ class VersionTest(unittest.TestCase):
self.assert_(SV('0.6.1') < SV('0.7.0'))
self.assert_(SV('0.7.0') < SV('0.7.1'))
self.assert_(SV('0.7.1') < SV(__version__))
self.assert_(SV(__version__) < SV('0.8.1'))
self.assert_(SV(__version__) < SV('0.8.0'))
def test_get_platform_contains_platform(self):
self.assert_(platform.platform() in get_platform())