diff --git a/docs/changes.rst b/docs/changes.rst index 4ccf62c9..4125b788 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -5,6 +5,14 @@ Changes This change log is used to track all major changes to Mopidy. +v0.6.0 (in development) +======================= + +**Changes** + +- None yet + + v0.5.0 (2011-06-15) =================== diff --git a/mopidy/__init__.py b/mopidy/__init__.py index 79a0aa29..7b25c525 100644 --- a/mopidy/__init__.py +++ b/mopidy/__init__.py @@ -5,7 +5,7 @@ if not (2, 6) <= sys.version_info < (3,): from subprocess import PIPE, Popen -VERSION = (0, 5, 0) +VERSION = (0, 6, 0) def get_version(): try: diff --git a/tests/version_test.py b/tests/version_test.py index 7bfb540e..9b53c63f 100644 --- a/tests/version_test.py +++ b/tests/version_test.py @@ -19,8 +19,9 @@ class VersionTest(unittest.TestCase): self.assert_(SV('0.3.0') < SV('0.3.1')) 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(get_plain_version())) - self.assert_(SV(get_plain_version()) < SV('0.5.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')) def test_get_platform_contains_platform(self): self.assert_(platform.platform() in get_platform())