Skip to content

Commit 90f04ca

Browse files
committed
Prep for v0.0.4
1 parent 8f92158 commit 90f04ca

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

library/CHANGELOG.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
0.0.4
2+
-----
3+
4+
* Add support for 320x240 2.0" LCD (Display HAT Mini)
5+
* Add support for 240x135 1.14" LCD (@slabua)
6+
* Rework numpy RGB888 to RGB565
7+
* Support displaying numpy arrays (@zecktos)
8+
19
0.0.3
210
-----
311

library/README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Install this library by running:
2727
sudo pip install st7789
2828
````
2929

30-
See example of usage in the examples folder.
30+
You might also need to enable I2C and SPI in raspi-config. See example of usage in the examples folder.
3131

3232

3333
# Licensing & History
@@ -52,6 +52,15 @@ Modified from 'Modified from 'Adafruit Python ILI9341' written by Tony DiCola fo
5252
MIT license, all text above must be included in any redistribution
5353

5454
# Changelog
55+
56+
0.0.4
57+
-----
58+
59+
* Add support for 320x240 2.0" LCD (Display HAT Mini)
60+
* Add support for 240x135 1.14" LCD (@slabua)
61+
* Rework numpy RGB888 to RGB565
62+
* Support displaying numpy arrays (@zecktos)
63+
5564
0.0.3
5665
-----
5766

library/ST7789/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import RPi.GPIO as GPIO
2727

2828

29-
__version__ = '0.0.3'
29+
__version__ = '0.0.4'
3030

3131
BG_SPI_CS_BACK = 0
3232
BG_SPI_CS_FRONT = 1

library/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
'Topic :: System :: Hardware']
1212

1313
setup(name='ST7789',
14-
version='0.0.3',
14+
version='0.0.4',
1515
description='Library to control ST7789 TFT LCD displays.',
16-
long_description=open('README.md').read() + '\n' + open('CHANGELOG.txt').read(),
16+
long_description=open('README.md').read(),
1717
long_description_content_type='text/markdown',
1818
license='MIT',
1919
author='Philip Howard',

0 commit comments

Comments
 (0)