Skip to content

Commit dabffc6

Browse files
committed
bump version to 0.0.20
1 parent 9866c2e commit dabffc6

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
0.0.20
2+
----
3+
* Fix for SPI not loading spidevX.X correctly based on load order
4+
* Initialize ctrl_dir in unload_device_tree #63
5+
* Clean up unused/dead code
6+
17
0.0.19
28
----
39
* Fix for SPI.xfer crashes python after 3 calls

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.19',
46+
version = '0.0.20',
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.19");
71+
version = Py_BuildValue("s", "0.0.20");
7272
PyModule_AddObject(module, "VERSION", version);
7373
}

0 commit comments

Comments
 (0)