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:
@ -1,3 +1,8 @@
|
|||||||
|
0.0.9
|
||||||
|
----
|
||||||
|
* Fixed SoftPWM segfault
|
||||||
|
* Added Alternate Names for the GPIOs
|
||||||
|
|
||||||
0.0.8
|
0.0.8
|
||||||
----
|
----
|
||||||
* Updates to handle the 4.4 kernel CHIPs. Numerous fixes to fix code issues.
|
* Updates to handle the 4.4 kernel CHIPs. Numerous fixes to fix code issues.
|
||||||
|
2
setup.py
2
setup.py
@ -20,7 +20,7 @@ classifiers = ['Development Status :: 3 - Alpha',
|
|||||||
'Topic :: System :: Hardware']
|
'Topic :: System :: Hardware']
|
||||||
|
|
||||||
setup(name = 'CHIP_IO',
|
setup(name = 'CHIP_IO',
|
||||||
version = '0.0.8',
|
version = '0.0.9',
|
||||||
author = 'Robert Wolterman',
|
author = 'Robert Wolterman',
|
||||||
author_email = 'robert.wolterman@gmail.com',
|
author_email = 'robert.wolterman@gmail.com',
|
||||||
description = 'A module to control CHIP IO channels',
|
description = 'A module to control CHIP IO channels',
|
||||||
|
@ -76,6 +76,6 @@ void define_constants(PyObject *module)
|
|||||||
both_edge = Py_BuildValue("i", BOTH_EDGE);
|
both_edge = Py_BuildValue("i", BOTH_EDGE);
|
||||||
PyModule_AddObject(module, "BOTH", 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);
|
PyModule_AddObject(module, "VERSION", version);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user