Skip to content

Commit 2b427c9

Browse files
committed
bump to version 0.5.0, added tag support
1 parent 885ec9f commit 2b427c9

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

devicecloud/test/unit/test_version.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
#
55
# Copyright (c) 2015 Digi International, Inc.
66

7-
__version__ = "0.4.3"
7+
__version__ = "0.5.0"

0 commit comments

Comments
 (0)