From c004b38d67553dc33b571df583fa90decd3650d0 Mon Sep 17 00:00:00 2001 From: Philip Howard Date: Tue, 15 Jun 2021 16:43:14 +0100 Subject: [PATCH] Prep for v2.0.0 --- library/CHANGELOG.txt | 10 ++++++++++ library/README.md | 10 ++++++++++ library/plasma/__init__.py | 2 +- library/setup.cfg | 2 +- 4 files changed, 22 insertions(+), 2 deletions(-) diff --git a/library/CHANGELOG.txt b/library/CHANGELOG.txt index 051f2c1..dda3e07 100644 --- a/library/CHANGELOG.txt +++ b/library/CHANGELOG.txt @@ -1,3 +1,13 @@ +2.0.0 +----- + +* Port to Python >=3.7, drop Python 2.7 support +* Significant refactoring and restructuring +* Config file support for configuring LED types/relationships +* WS382X support +* Chip-Select support for APA102 +* PlasmaMatrix to combine multiple output devices + 1.0.0 ----- diff --git a/library/README.md b/library/README.md index 3d30317..f769f06 100644 --- a/library/README.md +++ b/library/README.md @@ -87,6 +87,16 @@ sudo python3 setup.py install ## Changelog +2.0.0 +----- + +* Port to Python >=3.7, drop Python 2.7 support +* Significant refactoring and restructuring +* Config file support for configuring LED types/relationships +* WS382X support +* Chip-Select support for APA102 +* PlasmaMatrix to combine multiple output devices + 1.0.0 ----- diff --git a/library/plasma/__init__.py b/library/plasma/__init__.py index d5ea5e5..fe74d0b 100644 --- a/library/plasma/__init__.py +++ b/library/plasma/__init__.py @@ -2,7 +2,7 @@ import sys import pathlib -__version__ = '1.0.0' +__version__ = '2.0.0' def auto(default=None): diff --git a/library/setup.cfg b/library/setup.cfg index 27d57b3..8c91045 100644 --- a/library/setup.cfg +++ b/library/setup.cfg @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- [metadata] name = plasmalights -version = 1.0.0 +version = 2.0.0 author = Philip Howard author_email = phil@pimoroni.com description = Python library for driving Pimoroni Plasma and other LED devices