From 4891c9a003dfbf64c78ccce4c345d4eb5fb556b5 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Thu, 16 Sep 2021 13:31:39 +0100 Subject: [PATCH] Prep for v2.0.2 --- library/CHANGELOG.txt | 5 +++++ library/README.md | 5 +++++ library/plasma/__init__.py | 2 +- library/setup.cfg | 2 +- 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/library/CHANGELOG.txt b/library/CHANGELOG.txt index c7e1712..4c3f4c6 100644 --- a/library/CHANGELOG.txt +++ b/library/CHANGELOG.txt @@ -1,3 +1,8 @@ +2.0.2 +----- + +* Pass brightness values through plasma Matrix to underlying LED drivers + 2.0.1 ----- diff --git a/library/README.md b/library/README.md index 51534fa..00dabc0 100644 --- a/library/README.md +++ b/library/README.md @@ -87,6 +87,11 @@ sudo python3 setup.py install ## Changelog +2.0.2 +----- + +* Pass brightness values through plasma Matrix to underlying LED drivers + 2.0.1 ----- diff --git a/library/plasma/__init__.py b/library/plasma/__init__.py index 55cca9c..3618909 100644 --- a/library/plasma/__init__.py +++ b/library/plasma/__init__.py @@ -2,7 +2,7 @@ import sys import pathlib -__version__ = '2.0.1' +__version__ = '2.0.2' def auto(default=None, descriptor=None): diff --git a/library/setup.cfg b/library/setup.cfg index 3bbe83e..ac83f02 100644 --- a/library/setup.cfg +++ b/library/setup.cfg @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- [metadata] name = plasmalights -version = 2.0.1 +version = 2.0.2 author = Philip Howard author_email = phil@pimoroni.com description = Python library for driving Pimoroni Plasma and other LED devices