Skip to content

Commit 7617c87

Browse files
committed
bump version to 0.0.19, and update changelog
1 parent 408ea38 commit 7617c87

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
0.0.19
2+
* Fix for SPI.xfer crashes python after 3 calls
3+
* Added a retry to reading for the analog inputs to avoid a bug where reading back and forth between two analog inputs would cause the resource to be unavailable every 16 scans (zthorson)
4+
* Updated the build_path to be more selective over what paths it chooses (zthorson)
5+
* Update Debian installation instructions in README (justinledwards)
6+
* Increase the size of the buffer used for storing device tree names (SaintGimp)
7+
18
0.0.18
29
----
310
* UART - Include UART overlays, and compile upon installation

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
'Topic :: System :: Hardware']
4444

4545
setup(name = 'Adafruit_BBIO',
46-
version = '0.0.18b',
46+
version = '0.0.19',
4747
author = 'Justin Cooper',
4848
author_email = 'justin@adafruit.com',
4949
description = 'A module to control BeagleBone IO channels',

source/constants.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@ void define_constants(PyObject *module)
6868
both_edge = Py_BuildValue("i", BOTH_EDGE);
6969
PyModule_AddObject(module, "BOTH", both_edge);
7070

71-
version = Py_BuildValue("s", "0.0.18");
71+
version = Py_BuildValue("s", "0.0.19");
7272
PyModule_AddObject(module, "VERSION", version);
7373
}

0 commit comments

Comments
 (0)