From e6656b5104627e1d9ea6532073c25d44e49bfb1f Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Wed, 30 Aug 2017 10:30:45 +0100 Subject: [PATCH] v2.2.1 with rpi_ws281x >= 3.0.1 dep --- library/UnicornHat/CHANGELOG.txt | 5 +++++ library/UnicornHat/setup.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/library/UnicornHat/CHANGELOG.txt b/library/UnicornHat/CHANGELOG.txt index 60d219c..e87fa97 100644 --- a/library/UnicornHat/CHANGELOG.txt +++ b/library/UnicornHat/CHANGELOG.txt @@ -1,3 +1,8 @@ +2.2.1 +----- + +* Refactor: Switched to using rpi_ws218x 3.x.x + 2.1.3 ----- diff --git a/library/UnicornHat/setup.py b/library/UnicornHat/setup.py index 1f2798b..ff45c97 100755 --- a/library/UnicornHat/setup.py +++ b/library/UnicornHat/setup.py @@ -36,7 +36,7 @@ setup( name = 'unicornhat', - version = '2.2.0', + version = '2.2.1', author = 'Philip Howard', author_email = 'phil@pimoroni.com', description = """Python library for UnicornHAT/pHAT""", @@ -46,5 +46,5 @@ url = 'http://shop.pimoroni.com', classifiers = classifiers, py_modules = [ 'unicornhat' ], - install_requires= ['rpi_ws281x >= 2.0.5'] + install_requires= ['rpi_ws281x >= 3.0.1'] )