Bump version to 1.0.0

So that the development version of extensions can start depending on
1.0.0 and test that they work with the changed APIs.
This commit is contained in:
Stein Magnus Jodal 2015-03-22 09:25:04 +01:00
parent f361109832
commit 12649265b1
2 changed files with 4 additions and 3 deletions

View File

@ -30,4 +30,4 @@ except ImportError:
warnings.filterwarnings('ignore', 'could not open display')
__version__ = '0.19.5'
__version__ = '1.0.0'

View File

@ -54,5 +54,6 @@ class VersionTest(unittest.TestCase):
self.assertVersionLess('0.19.1', '0.19.2')
self.assertVersionLess('0.19.2', '0.19.3')
self.assertVersionLess('0.19.3', '0.19.4')
self.assertVersionLess('0.19.4', __version__)
self.assertVersionLess(__version__, '0.19.6')
self.assertVersionLess('0.19.4', '0.19.5')
self.assertVersionLess('0.19.5', __version__)
self.assertVersionLess(__version__, '1.0.1')