diff --git a/docs/changes.rst b/docs/changes.rst index 92fb4a63..4bd65f0e 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -4,6 +4,12 @@ Changes This change log is used to track all major changes to Mopidy. +0.1.0a3 (unreleased) +==================== + +- (none) + + 0.1.0a2 (2010-06-02) ==================== diff --git a/mopidy/__init__.py b/mopidy/__init__.py index 5d8f16b9..7c2d7570 100644 --- a/mopidy/__init__.py +++ b/mopidy/__init__.py @@ -1,7 +1,7 @@ from mopidy import settings as raw_settings def get_version(): - return u'0.1.0a2' + return u'0.1.0a3' def get_mpd_protocol_version(): return u'0.16.0' diff --git a/tests/version_test.py b/tests/version_test.py index d593f01c..5831d119 100644 --- a/tests/version_test.py +++ b/tests/version_test.py @@ -8,10 +8,10 @@ class VersionTest(unittest.TestCase): SV(get_version()) def test_versions_can_be_strictly_ordered(self): - self.assert_(SV(get_version()) > SV('0.1.0a0')) - self.assert_(SV(get_version()) > SV('0.1.0a1')) - self.assert_(SV(get_version()) < SV('0.1.0a3')) - self.assert_(SV('0.1.0a1') < SV('0.1.0')) + self.assert_(SV('0.1.0a0') < SV('0.1.0a1')) + self.assert_(SV('0.1.0a2') < SV(get_version())) + self.assert_(SV(get_version()) < SV('0.1.0a4')) + self.assert_(SV('0.1.0a0') < SV('0.1.0')) self.assert_(SV('0.1.0') < SV('0.1.1')) self.assert_(SV('0.1.1') < SV('0.2.0')) self.assert_(SV('0.2.0') < SV('1.0.0'))