Prep for v0.0.3

This commit is contained in:
Phil Howard
2019-04-03 23:15:05 +01:00
parent ba6b8c8370
commit 50394abfd1
3 changed files with 11 additions and 1 deletions

View File

@@ -1,3 +1,11 @@
0.0.3
-----
* Fixed backlight pin
* Added `set_backlight`
* Added constants BG_SPI_CS_FRONT and BG_SPI_CS_BACK
* Added module __version__
0.0.2
-----

View File

@@ -26,6 +26,8 @@ import spidev
import RPi.GPIO as GPIO
__version__ = '0.0.3'
BG_SPI_CS_BACK = 0
BG_SPI_CS_FRONT = 1

View File

@@ -11,7 +11,7 @@ classifiers = ['Development Status :: 4 - Beta',
'Topic :: System :: Hardware']
setup(name='ST7735',
version='0.0.2',
version='0.0.3',
description='Library to control an ST7735 168x80 TFT LCD display.',
long_description=open('README.rst').read() + '\n' + open('CHANGELOG.txt').read(),
license='MIT',