Skip to content

Commit cdb4d51

Browse files
committed
Prep for v2.0.1
1 parent 8b74733 commit cdb4d51

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

library/CHANGELOG.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2.0.1
2+
-----
3+
4+
* New `auto()` can accept a config file path directly (for plasma daemon)
5+
* New `Matrix` and `Core` now accept list and dict type sequences in `set_sequence`
6+
* New `Matrix` config supports an "enabled" option for easy config switching
7+
* Bugfix `Matrix` catches KeyError when trying to `del` non-required options
8+
19
2.0.0
210
-----
311

library/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,14 @@ sudo python3 setup.py install
8787

8888
## Changelog
8989

90+
2.0.1
91+
-----
92+
93+
* New `auto()` can accept a config file path directly (for plasma daemon)
94+
* New `Matrix` and `Core` now accept list and dict type sequences in `set_sequence`
95+
* New `Matrix` config supports an "enabled" option for easy config switching
96+
* Bugfix `Matrix` catches KeyError when trying to `del` non-required options
97+
9098
2.0.0
9199
-----
92100

library/plasma/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33
import pathlib
44

5-
__version__ = '2.0.0'
5+
__version__ = '2.0.1'
66

77

88
def auto(default=None, descriptor=None):

library/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
[metadata]
33
name = plasmalights
4-
version = 2.0.0
4+
version = 2.0.1
55
author = Philip Howard
66
author_email = [email protected]
77
description = Python library for driving Pimoroni Plasma and other LED devices

0 commit comments

Comments
 (0)