From 421fe1bbf05c23a5a40b20948e510f804fd5d25e Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Mon, 20 Dec 2021 12:42:36 +0000 Subject: [PATCH] Prep for v1.3.0 --- library/CHANGELOG.txt | 7 +++++++ library/inky/__init__.py | 2 +- library/setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/library/CHANGELOG.txt b/library/CHANGELOG.txt index db034edb..2cc9656c 100644 --- a/library/CHANGELOG.txt +++ b/library/CHANGELOG.txt @@ -1,3 +1,10 @@ +1.3.0 +----- + +* New: inky UC8159 support for 4" 640x400 display variant +* BugFix: fix set_image so it doesn't break set_pixel +* New: Added --simulate to "auto()", so auto examples can simulate a chosen board + 1.2.2 ----- diff --git a/library/inky/__init__.py b/library/inky/__init__.py index 498317bd..95343a64 100644 --- a/library/inky/__init__.py +++ b/library/inky/__init__.py @@ -8,7 +8,7 @@ from .inky_uc8159 import Inky as Inky7Colour # noqa: F401 from .auto import auto # noqa: F401 -__version__ = '1.2.2' +__version__ = '1.3.0' try: from pkg_resources import declare_namespace diff --git a/library/setup.py b/library/setup.py index 1dffd835..637ae274 100755 --- a/library/setup.py +++ b/library/setup.py @@ -38,7 +38,7 @@ setup( name='inky', - version='1.2.2', + version='1.3.0', author='Philip Howard', author_email='phil@pimoroni.com', description='Inky pHAT Driver',