From 353acf8472b12182a2def84c605e697a9602551f Mon Sep 17 00:00:00 2001 From: Drew Fustini Date: Sun, 19 Nov 2017 23:12:45 +0000 Subject: [PATCH] create release 1.0.8 Release 1.0.8: ============== Fixes: Issue #196: cache board type to avoid poor performance Issue #192: fix PocketBeagle PWM pin typo Issue #191: turn off RotaryEncoder's debug output by default Issue #188: GPIO is extremely slow (20ms to toggle) Issue #186: problems with UART shortlog: David Planella (12): Copy Encoder module comments to README.md Formatted Encoder README in markdown Fixed Encoder README formatting Removed QEP instructions from Encoder module Fixes to Encoder README Updated Encoder README Encoder README: added info on dedicated overlays Encoder README: updated info on pre-requisites Encoder README update Encoder README update Add logging support, turn off unconditional debug output Encoder: remove unused logging code Drew Fustini (3): Merge pull request #195 from dplanella/master Fix PocketBeagle PWM pin typo (#192) cache board type to avoid poor performance (#196) Signed-off-by: Drew Fustini --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3cdcd6..636f8a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,32 @@ +1.0.8 +---- +**Fixes:** +* Issue #196: cache board type to avoid poor performance +* Issue #192: fix PocketBeagle PWM pin typo +* Issue #191: turn off RotaryEncoder's debug output by default +* Issue #188: GPIO is extremely slow (20ms to toggle) +* Issue #186: problems with UART + +**shortlog:** +* David Planella (12): + * Copy Encoder module comments to README.md + * Formatted Encoder README in markdown + * Fixed Encoder README formatting + * Removed QEP instructions from Encoder module + * Fixes to Encoder README + * Updated Encoder README + * Encoder README: added info on dedicated overlays + * Encoder README: updated info on pre-requisites + * Encoder README update + * Encoder README update + * Add logging support, turn off unconditional debug output + * Encoder: remove unused logging code + +* Drew Fustini (3): + * Merge pull request #195 from dplanella/master + * Fix PocketBeagle PWM pin typo (#192) + * cache board type to avoid poor performance (#196) + 1.0.7 ---- **Fixes:** diff --git a/setup.py b/setup.py index 3e9b78b..991b476 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ } setup(name = 'Adafruit_BBIO', - version = '1.0.7', + version = '1.0.8', author = 'Justin Cooper', author_email = 'justin@adafruit.com', description = 'A module to control BeagleBone IO channels',