1
0
mirror of https://github.com/xtacocorex/CHIP_IO synced 2025-07-20 04:43:21 +00:00

Updating the version prior to merge of this branch into master

This commit is contained in:
Robert Wolterman
2016-07-09 22:26:50 -05:00
parent f6833db833
commit a9a2dbf862
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
0.0.9
----
* Fixed SoftPWM segfault
* Added Alternate Names for the GPIOs
0.0.8
----
* Updates to handle the 4.4 kernel CHIPs. Numerous fixes to fix code issues.

View File

@ -20,7 +20,7 @@ classifiers = ['Development Status :: 3 - Alpha',
'Topic :: System :: Hardware']
setup(name = 'CHIP_IO',
version = '0.0.8',
version = '0.0.9',
author = 'Robert Wolterman',
author_email = 'robert.wolterman@gmail.com',
description = 'A module to control CHIP IO channels',

View File

@ -76,6 +76,6 @@ void define_constants(PyObject *module)
both_edge = Py_BuildValue("i", BOTH_EDGE);
PyModule_AddObject(module, "BOTH", both_edge);
version = Py_BuildValue("s", "0.0.8");
version = Py_BuildValue("s", "0.0.9");
PyModule_AddObject(module, "VERSION", version);
}