Skip to content

Commit

Permalink
Prep for v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Jun 15, 2021
1 parent fc964bf commit c004b38
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
10 changes: 10 additions & 0 deletions library/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -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
-----

Expand Down
10 changes: 10 additions & 0 deletions library/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----

Expand Down
2 changes: 1 addition & 1 deletion library/plasma/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
import pathlib

__version__ = '1.0.0'
__version__ = '2.0.0'


def auto(default=None):
Expand Down
2 changes: 1 addition & 1 deletion library/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
[metadata]
name = plasmalights
version = 1.0.0
version = 2.0.0
author = Philip Howard
author_email = [email protected]
description = Python library for driving Pimoroni Plasma and other LED devices
Expand Down

0 comments on commit c004b38

Please sign in to comment.