Skip to content

Commit

Permalink
README updates following the merge of PR#70 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
xtacocorex committed Jun 9, 2017
1 parent 41d4b84 commit 6e93fad
Show file tree
Hide file tree
Showing 6 changed files with 137 additions and 114 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.5.9
---
* Merged PR#70 to enable the underlying C code to be used properly in C based code
* Updated README to add missing pins on the CHIP Pro that are available as GPIO
* Updated README to denote pins that are available for Edge Detection

0.5.8
---
* Added 3 pins for the CHIP Pro as allowable for setting callbacks and edge detection to close out Issue #68
Expand Down
229 changes: 119 additions & 110 deletions README.rst

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
chip-io (0.5.9-1) unstable; urgency=low

* Merged PR#70 to enable the underlying C code to be used properly in C based code
* Updated README to add missing pins on the CHIP Pro that are available as GPIO
* Updated README to denote pins that are available for Edge Detection

-- Robert Wolterman <[email protected]> Tue, 08 Jun 2017 20:03:00 -0600

chip-io (0.5.8-1) unstable; urgency=low

* Added 3 pins for the CHIP Pro as allowable for setting callbacks and edge
Expand Down
4 changes: 2 additions & 2 deletions debian/files
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
python-chip-io_0.5.7-1_armhf.deb python optional
python3-chip-io_0.5.7-1_armhf.deb python optional
python-chip-io_0.5.8-1_armhf.deb python optional
python3-chip-io_0.5.8-1_armhf.deb python optional
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
'Topic :: System :: Hardware']

setup(name = 'CHIP_IO',
version = '0.5.8',
version = '0.5.9',
author = 'Robert Wolterman',
author_email = '[email protected]',
description = 'A module to control CHIP IO channels',
Expand Down
2 changes: 1 addition & 1 deletion source/constants.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,6 @@ void define_constants(PyObject *module)
bcm = Py_BuildValue("i", BCM);
PyModule_AddObject(module, "BCM", bcm);

version = Py_BuildValue("s", "0.5.8");
version = Py_BuildValue("s", "0.5.9");
PyModule_AddObject(module, "VERSION", version);
}

0 comments on commit 6e93fad

Please sign in to comment.