File tree Expand file tree Collapse file tree 2 files changed +25
-13
lines changed Expand file tree Collapse file tree 2 files changed +25
-13
lines changed Original file line number Diff line number Diff 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+
Original file line number Diff line number Diff line change 11from 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+
You can’t perform that action at this time.
0 commit comments