We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 885ec9f commit 2b427c9Copy full SHA for 2b427c9
devicecloud/test/unit/test_version.py
@@ -0,0 +1,9 @@
1
+import unittest
2
+
3
+from devicecloud.version import __version__
4
5
6
+class TestVersion(unittest.TestCase):
7
8
+ def test_version_format(self):
9
+ self.assertTrue(len(__version__.split('.')) >= 3)
devicecloud/version.py
@@ -4,4 +4,4 @@
#
# Copyright (c) 2015 Digi International, Inc.
-__version__ = "0.4.3"
+__version__ = "0.5.0"
0 commit comments