From 9f130f4dfcf7cd6ec1754d51612b21ce4eeeb8ea Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Fri, 29 Apr 2011 21:44:57 +0200 Subject: [PATCH] Bump version number to 0.4.1 --- mopidy/__init__.py | 2 +- tests/version_test.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/mopidy/__init__.py b/mopidy/__init__.py index 1fbf99c8..35f5f94d 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, 4, 0) +VERSION = (0, 4, 1) def get_version(): try: diff --git a/tests/version_test.py b/tests/version_test.py index 7f204283..7c452c63 100644 --- a/tests/version_test.py +++ b/tests/version_test.py @@ -17,8 +17,9 @@ class VersionTest(unittest.TestCase): self.assert_(SV('0.1.0') < SV('1.0.0')) self.assert_(SV('0.2.0') < SV('0.3.0')) self.assert_(SV('0.3.0') < SV('0.3.1')) - self.assert_(SV('0.3.1') < SV(get_plain_version())) - self.assert_(SV(get_plain_version()) < SV('0.4.1')) + self.assert_(SV('0.3.1') < SV('0.4.0')) + self.assert_(SV('0.4.0') < SV(get_plain_version())) + self.assert_(SV(get_plain_version()) < SV('0.4.2')) def test_get_platform_contains_platform(self): self.assert_(platform.platform() in get_platform())