diff --git a/library/CHANGELOG.txt b/library/CHANGELOG.txt index ffbfd4e..576c8b7 100644 --- a/library/CHANGELOG.txt +++ b/library/CHANGELOG.txt @@ -1,3 +1,11 @@ +0.0.5 +----- + +* Replace Plasma API with APA102 library +* Add support for setting LED global brightness +* Add support for disabling button and/or LED +* Move packages/requires to setup.config, minimum version now Python 2.7 + 0.0.4 ----- diff --git a/library/README.md b/library/README.md index 748c2b4..ff73e3f 100644 --- a/library/README.md +++ b/library/README.md @@ -13,6 +13,7 @@ Stable library from PyPi: Latest/development library from GitHub: +* `apt install git python3-pip` * `git clone https://github.com/pimoroni/fanshim-python` * `cd fanshim-python` * `sudo ./install.sh` @@ -138,6 +139,14 @@ fanshim.start_polling() * Fan SHIM in C++, using libgpiod - https://github.com/daviehh/fanshim-cpp +0.0.5 +----- + +* Replace Plasma API with APA102 library +* Add support for setting LED global brightness +* Add support for disabling button and/or LED +* Move packages/requires to setup.config, minimum version now Python 2.7 + 0.0.4 ----- diff --git a/library/fanshim/__init__.py b/library/fanshim/__init__.py index becfa6a..f478d92 100644 --- a/library/fanshim/__init__.py +++ b/library/fanshim/__init__.py @@ -4,7 +4,7 @@ import atexit from threading import Thread -__version__ = '0.0.4' +__version__ = '0.0.5' class FanShim(): diff --git a/library/setup.cfg b/library/setup.cfg index 522df32..05c013f 100644 --- a/library/setup.cfg +++ b/library/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = fanshim -version = 0.0.4 +version = 0.0.5 author = Philip Howard author_email = phil@pimoroni.com description = Python library for the Pimoroni Fan Shim for Raspberry Pi