Skip to content

Commit 3967506

Browse files
Bump to v0.2.2
1 parent a2da42e commit 3967506

File tree

2 files changed

+25
-13
lines changed

2 files changed

+25
-13
lines changed

CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,13 @@ v0.2.1 - 19 Apr 2017
4949
* Simpler terminology 'Power Demand' and 'Power Consumption'.
5050
* Making more use of callback.
5151
* Further PEP formatting.
52+
53+
v0.2.2 - 08 May 2017
54+
* New messages.py - Moving all parse* and generate* functions to this file.
55+
* Making use of lambda functions to generate messages.
56+
* New unit tests.
57+
* Adding Codecov and TravisCI support.
58+
* New regular updates thread for keep alives etc.
59+
* Improving thread quit speed.
60+
* Moved tests folder in package... again.
61+

setup.py

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
from setuptools import setup
22

3-
setup(name='PyAlertMe',
4-
version='0.2.2',
5-
description='Python AlertMe',
6-
url='https://github.com/jamesleesaunders/PyAlertMe',
7-
author='James Saunders',
8-
author_email='james@saunders-family.net',
9-
license='MIT',
10-
packages=['pyalertme'],
11-
keywords='xbee hive alertme lowes iris',
12-
zip_safe=False,
13-
install_requires=['pyserial', 'xbee'],
14-
test_suite='nose.collector',
15-
tests_require=['nose']
3+
setup(
4+
name='PyAlertMe',
5+
version='0.2.2',
6+
description='Python AlertMe',
7+
url='https://github.com/jamesleesaunders/PyAlertMe',
8+
author='James Saunders',
9+
author_email='james@saunders-family.net',
10+
license='MIT',
11+
packages=['pyalertme'],
12+
keywords='xbee hive alertme lowes iris',
13+
zip_safe=False,
14+
install_requires=['pyserial', 'xbee'],
15+
test_suite='nose.collector',
16+
tests_require=['nose']
1617
)
18+

0 commit comments

Comments
 (0)