Skip to content

Commit 6e93fad

Browse files
committed
README updates following the merge of PR#70 into master
1 parent 41d4b84 commit 6e93fad

File tree

6 files changed

+137
-114
lines changed

6 files changed

+137
-114
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
0.5.9
2+
---
3+
* Merged PR#70 to enable the underlying C code to be used properly in C based code
4+
* Updated README to add missing pins on the CHIP Pro that are available as GPIO
5+
* Updated README to denote pins that are available for Edge Detection
6+
17
0.5.8
28
---
39
* Added 3 pins for the CHIP Pro as allowable for setting callbacks and edge detection to close out Issue #68

README.rst

Lines changed: 119 additions & 110 deletions
Large diffs are not rendered by default.

debian/changelog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
chip-io (0.5.9-1) unstable; urgency=low
2+
3+
* Merged PR#70 to enable the underlying C code to be used properly in C based code
4+
* Updated README to add missing pins on the CHIP Pro that are available as GPIO
5+
* Updated README to denote pins that are available for Edge Detection
6+
7+
-- Robert Wolterman <[email protected]> Tue, 08 Jun 2017 20:03:00 -0600
8+
19
chip-io (0.5.8-1) unstable; urgency=low
210

311
* Added 3 pins for the CHIP Pro as allowable for setting callbacks and edge

debian/files

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
python-chip-io_0.5.7-1_armhf.deb python optional
2-
python3-chip-io_0.5.7-1_armhf.deb python optional
1+
python-chip-io_0.5.8-1_armhf.deb python optional
2+
python3-chip-io_0.5.8-1_armhf.deb python optional

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
'Topic :: System :: Hardware']
1414

1515
setup(name = 'CHIP_IO',
16-
version = '0.5.8',
16+
version = '0.5.9',
1717
author = 'Robert Wolterman',
1818
author_email = '[email protected]',
1919
description = 'A module to control CHIP IO channels',

source/constants.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,6 @@ void define_constants(PyObject *module)
8585
bcm = Py_BuildValue("i", BCM);
8686
PyModule_AddObject(module, "BCM", bcm);
8787

88-
version = Py_BuildValue("s", "0.5.8");
88+
version = Py_BuildValue("s", "0.5.9");
8989
PyModule_AddObject(module, "VERSION", version);
9090
}

0 commit comments

Comments
 (0)