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

Updating spwmtest.py to check for Issue #16. Updated Changelog and version to 0.2.2

This commit is contained in:
Robert Wolterman
2016-07-30 14:46:25 -05:00
parent 1e3e801e60
commit c8e4323c27
4 changed files with 19 additions and 2 deletions

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.2.1");
version = Py_BuildValue("s", "0.2.2");
PyModule_AddObject(module, "VERSION", version);
}