Skip to content

Commit

Permalink
Version bump 0.2.1 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
Adminiuga authored May 5, 2019
1 parent 7cc0827 commit c8ba64e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 14 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

from setuptools import find_packages, setup

import zigpy_xbee.const as xbee_const
import zigpy_xbee

setup(
name="zigpy-xbee-homeassistant",
version=xbee_const.__version__,
version=zigpy_xbee.__version__,
description="A library which communicates with XBee radios for zigpy",
url="http://github.com/zigpy/zigpy-xbee",
author="Russell Cloran",
Expand Down
6 changes: 0 additions & 6 deletions tests/test_const.py

This file was deleted.

5 changes: 5 additions & 0 deletions zigpy_xbee/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
MAJOR_VERSION = 0
MINOR_VERSION = 2
PATCH_VERSION = '1'
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
6 changes: 0 additions & 6 deletions zigpy_xbee/const.py

This file was deleted.

0 comments on commit c8ba64e

Please sign in to comment.