Skip to content

Commit

Permalink
Bump to v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesleesaunders committed May 8, 2017
1 parent a2da42e commit 3967506
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 13 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,13 @@ v0.2.1 - 19 Apr 2017
* Simpler terminology 'Power Demand' and 'Power Consumption'.
* Making more use of callback.
* Further PEP formatting.

v0.2.2 - 08 May 2017
* New messages.py - Moving all parse* and generate* functions to this file.
* Making use of lambda functions to generate messages.
* New unit tests.
* Adding Codecov and TravisCI support.
* New regular updates thread for keep alives etc.
* Improving thread quit speed.
* Moved tests folder in package... again.

28 changes: 15 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
from setuptools import setup

setup(name='PyAlertMe',
version='0.2.2',
description='Python AlertMe',
url='https://github.com/jamesleesaunders/PyAlertMe',
author='James Saunders',
author_email='james@saunders-family.net',
license='MIT',
packages=['pyalertme'],
keywords='xbee hive alertme lowes iris',
zip_safe=False,
install_requires=['pyserial', 'xbee'],
test_suite='nose.collector',
tests_require=['nose']
setup(
name='PyAlertMe',
version='0.2.2',
description='Python AlertMe',
url='https://github.com/jamesleesaunders/PyAlertMe',
author='James Saunders',
author_email='james@saunders-family.net',
license='MIT',
packages=['pyalertme'],
keywords='xbee hive alertme lowes iris',
zip_safe=False,
install_requires=['pyserial', 'xbee'],
test_suite='nose.collector',
tests_require=['nose']
)

0 comments on commit 3967506

Please sign in to comment.