From 2bef4f2e498b2eda7ad5018f032e7303e8225d37 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sat, 22 Jan 2011 14:03:13 +0100 Subject: [PATCH] Ready for v0.4.0 development --- docs/changes.rst | 11 +++++++++++ mopidy/__init__.py | 2 +- tests/version_test.py | 5 +++-- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/docs/changes.rst b/docs/changes.rst index cecf3ffa..8b17cb25 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -5,6 +5,17 @@ Changes This change log is used to track all major changes to Mopidy. +0.4.0 (in development) +====================== + +No description yet. + + +**Changes** + +- No changes yet. + + 0.3.0 (2010-01-22) ================== diff --git a/mopidy/__init__.py b/mopidy/__init__.py index fffa25c7..fc56efac 100644 --- a/mopidy/__init__.py +++ b/mopidy/__init__.py @@ -3,7 +3,7 @@ if not (2, 6) <= sys.version_info < (3,): sys.exit(u'Mopidy requires Python >= 2.6, < 3') def get_version(): - return u'0.3.0' + return u'0.4.0' class MopidyException(Exception): def __init__(self, message, *args, **kwargs): diff --git a/tests/version_test.py b/tests/version_test.py index a8bc2955..9574aaf5 100644 --- a/tests/version_test.py +++ b/tests/version_test.py @@ -14,5 +14,6 @@ class VersionTest(unittest.TestCase): self.assert_(SV('0.1.0a3') < SV('0.1.0')) self.assert_(SV('0.1.0') < SV('0.2.0')) self.assert_(SV('0.1.0') < SV('1.0.0')) - self.assert_(SV('0.2.0') < SV(get_version())) - self.assert_(SV(get_version()) < SV('0.3.1')) + self.assert_(SV('0.2.0') < SV('0.3.0')) + self.assert_(SV('0.3.0') < SV(get_version())) + self.assert_(SV(get_version()) < SV('0.4.1'))