From c0733d678afaaff18726b1e8ed9de58fe33c427b Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Mon, 7 Aug 2023 11:35:02 +0100 Subject: [PATCH] Prep for v0.0.5 --- library/CHANGELOG.txt | 6 ++++++ library/ST7735/__init__.py | 2 +- library/setup.cfg | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/library/CHANGELOG.txt b/library/CHANGELOG.txt index 5621fb6..d16342f 100644 --- a/library/CHANGELOG.txt +++ b/library/CHANGELOG.txt @@ -1,3 +1,9 @@ +0.0.5 +----- + +* Add support for choosing between BGR/RGB displays +* Add methods for display power and sleep control + 0.0.4-post1 ----------- diff --git a/library/ST7735/__init__.py b/library/ST7735/__init__.py index b5ea6f4..bc32772 100644 --- a/library/ST7735/__init__.py +++ b/library/ST7735/__init__.py @@ -26,7 +26,7 @@ import spidev import RPi.GPIO as GPIO -__version__ = '0.0.4' +__version__ = '0.0.5' BG_SPI_CS_BACK = 0 BG_SPI_CS_FRONT = 1 diff --git a/library/setup.cfg b/library/setup.cfg index cd7b9cc..1f2c54f 100644 --- a/library/setup.cfg +++ b/library/setup.cfg @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- [metadata] name = ST7735 -version = 0.0.4-post1 +version = 0.0.5 author = Philip Howard author_email = phil@pimoroni.com description = Library to control an ST7735 168x80 TFT LCD display.