From b0319d1f70e9064c311699308950fbc1fd020fff Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sun, 9 Oct 2011 00:43:20 +0200 Subject: [PATCH] Prepare for v0.7 development --- docs/changes.rst | 12 ++++++++++++ mopidy/__init__.py | 2 +- tests/version_test.py | 5 +++-- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/docs/changes.rst b/docs/changes.rst index 445e7984..cc3deacc 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -5,6 +5,18 @@ Changes This change log is used to track all major changes to Mopidy. +v0.7.0 (in development) +======================= + +**Important changes** + +- Nothing so far + +**Changes** + +- Nothing so far + + v0.6.0 (2011-10-09) =================== diff --git a/mopidy/__init__.py b/mopidy/__init__.py index 1d820fd0..ced47e07 100644 --- a/mopidy/__init__.py +++ b/mopidy/__init__.py @@ -8,7 +8,7 @@ import os from subprocess import PIPE, Popen -VERSION = (0, 6, 0) +VERSION = (0, 7, 0) DATA_PATH = os.path.join(glib.get_user_data_dir(), 'mopidy') CACHE_PATH = os.path.join(glib.get_user_cache_dir(), 'mopidy') diff --git a/tests/version_test.py b/tests/version_test.py index 4544349d..bd9ba7b9 100644 --- a/tests/version_test.py +++ b/tests/version_test.py @@ -22,8 +22,9 @@ class VersionTest(unittest.TestCase): self.assert_(SV('0.3.1') < SV('0.4.0')) 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(get_plain_version())) - self.assert_(SV(get_plain_version()) < SV('0.6.1')) + 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')) def test_get_platform_contains_platform(self): self.assert_(platform.platform() in get_platform())