diff --git a/CHANGELOG.md b/CHANGELOG.md index 839bd0d..5afca55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +0.0.3 +----- + +* Repackage to hatch/pyproject +* Switch to smbus2 + 0.0.2 ----- diff --git a/ledshim/__init__.py b/ledshim/__init__.py index 381ba39..048a12d 100644 --- a/ledshim/__init__.py +++ b/ledshim/__init__.py @@ -1,7 +1,7 @@ """LED SHIM 28-pixel RGB LED display.""" from . import is31fl3731 -__version__ = "0.0.2" +__version__ = "0.0.3" display = is31fl3731.LEDSHIM(None, address=0x75, gamma_table=is31fl3731.LED_GAMMA)