diff --git a/docs/changes.rst b/docs/changes.rst index fa316c4d..84f5ffca 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -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** diff --git a/mopidy/__init__.py b/mopidy/__init__.py index e0bce88c..8a2b469e 100644 --- a/mopidy/__init__.py +++ b/mopidy/__init__.py @@ -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') diff --git a/tests/version_test.py b/tests/version_test.py index f3ae3e0b..b1c0b90e 100644 --- a/tests/version_test.py +++ b/tests/version_test.py @@ -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())