Skip to content

Commit

Permalink
0.2.2 with ST7735 for #28
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Feb 6, 2020
1 parent 925462d commit d02e157
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions library/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.2.2
-----

* Had ST7789 on the brain, swapped for ST7735

0.2.1
-----

Expand Down
2 changes: 1 addition & 1 deletion library/automationhat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from .ads1015 import ads1015
from .pins import ObjectCollection, AsyncWorker, StoppableThread

__version__ = '0.2.1'
__version__ = '0.2.2'


RELAY_1 = 13
Expand Down
4 changes: 2 additions & 2 deletions library/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def run(self):

setup(
name = 'automationhat',
version = '0.2.1',
version = '0.2.2',
author = 'Philip Howard',
author_email = '[email protected]',
description = 'Automation HAT Driver',
Expand All @@ -82,6 +82,6 @@ def run(self):
py_modules = [],
packages = ['automationhat'],
include_package_data = True,
install_requires= ['RPi.GPIO','sn3218','ST7789'],
install_requires= ['RPi.GPIO','sn3218','ST7735'],
cmdclass = {'test': TestCommand, 'testandbuild':BuildWithTests}
)

0 comments on commit d02e157

Please sign in to comment.