Ready for 0.1.0a2 development
This commit is contained in:
parent
c4b42234fe
commit
5449374fa2
@ -4,6 +4,12 @@ Changes
|
||||
|
||||
This change log is used to track all major changes to Mopidy.
|
||||
|
||||
0.1.0a2 (unreleased)
|
||||
====================
|
||||
|
||||
- (nothing yet)
|
||||
|
||||
|
||||
0.1.0a1 (2010-05-04)
|
||||
====================
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
from mopidy import settings as raw_settings
|
||||
|
||||
def get_version():
|
||||
return u'0.1.0a1'
|
||||
return u'0.1.0a2'
|
||||
|
||||
def get_mpd_protocol_version():
|
||||
return u'0.16.0'
|
||||
|
||||
@ -9,7 +9,8 @@ class VersionTest(unittest.TestCase):
|
||||
|
||||
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.0a2'))
|
||||
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.0') < SV('0.1.1'))
|
||||
self.assert_(SV('0.1.1') < SV('0.2.0'))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user