1
0
mirror of https://github.com/xtacocorex/CHIP_IO synced 2025-07-19 12:23:22 +00:00

forgot the actual version bump for #32. gonna close #32 since it's initially done

This commit is contained in:
Robert Wolterman
2017-02-25 19:17:25 -06:00
parent dab60b334d
commit bab94f7600
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -85,6 +85,6 @@ void define_constants(PyObject *module)
bcm = Py_BuildValue("i", BCM);
PyModule_AddObject(module, "BCM", bcm);
version = Py_BuildValue("s", "0.4.0");
version = Py_BuildValue("s", "0.5.0");
PyModule_AddObject(module, "VERSION", version);
}