Skip to content

Commit c8ba64e

Browse files
authored
Version bump 0.2.1 (#44)
1 parent 7cc0827 commit c8ba64e

File tree

4 files changed

+7
-14
lines changed

4 files changed

+7
-14
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
from setuptools import find_packages, setup
44

5-
import zigpy_xbee.const as xbee_const
5+
import zigpy_xbee
66

77
setup(
88
name="zigpy-xbee-homeassistant",
9-
version=xbee_const.__version__,
9+
version=zigpy_xbee.__version__,
1010
description="A library which communicates with XBee radios for zigpy",
1111
url="http://github.com/zigpy/zigpy-xbee",
1212
author="Russell Cloran",

tests/test_const.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

zigpy_xbee/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
MAJOR_VERSION = 0
2+
MINOR_VERSION = 2
3+
PATCH_VERSION = '1'
4+
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
5+
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)

zigpy_xbee/const.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)