diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d14ee2d..c1fbffd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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. diff --git a/setup.py b/setup.py index 2a475f1..b6a8526 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/source/constants.c b/source/constants.c index 7696318..40c6e0f 100644 --- a/source/constants.c +++ b/source/constants.c @@ -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); }