From a209450a9cefe7003c89bc24f9d5ddc3785f8d6c Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Tue, 9 Nov 2021 13:07:48 +0000 Subject: [PATCH] Prep for v0.5.1 --- library/CHANGELOG.txt | 5 +++++ library/README.md | 5 +++++ library/explorerhat/__init__.py | 2 +- library/setup.py | 2 +- 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/library/CHANGELOG.txt b/library/CHANGELOG.txt index baa5658..a0145c7 100644 --- a/library/CHANGELOG.txt +++ b/library/CHANGELOG.txt @@ -1,3 +1,8 @@ +0.5.1 +----- + +* Fix Python 3.9 support for Thread.is_alive() + 0.5.0 ----- diff --git a/library/README.md b/library/README.md index cdce1ca..86f7ef2 100644 --- a/library/README.md +++ b/library/README.md @@ -91,6 +91,11 @@ The 4 outputs on Explorer can sink 5V, but not source. This means you need to co # Changelog +0.5.1 +----- + +* Fix Python 3.9 support for Thread.is_alive() + 0.5.0 ----- diff --git a/library/explorerhat/__init__.py b/library/explorerhat/__init__.py index f96588c..97c92de 100644 --- a/library/explorerhat/__init__.py +++ b/library/explorerhat/__init__.py @@ -28,7 +28,7 @@ from .pins import ObjectCollection, AsyncWorker, StoppableThread -__version__ = '0.5.0' +__version__ = '0.5.1' _verbose = False _gpio_is_setup = False diff --git a/library/setup.py b/library/setup.py index 9f81ac7..d7e2ad2 100755 --- a/library/setup.py +++ b/library/setup.py @@ -39,7 +39,7 @@ setup( name = 'ExplorerHAT', - version = '0.5.0', + version = '0.5.1', author = 'Philip Howard', author_email= 'phil@pimoroni.com', description = 'A module to control the Explorer HAT Raspberry Pi Addon Board',