From 5567c38d4408e45d01bd4468a77013ce55776ca3 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Mon, 7 May 2018 00:44:43 +0200 Subject: [PATCH] Release 1.0.6 --- CHANGES.md | 5 +++++ xbox360controller/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index d33d950..e14528e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Release history +## 1.0.6 (07.05.2018) + +- Fix bug where event loop won't exit until next event +- Fix `AttributeError` when LED file cannot be accessed but closing is attempted + ## 1.0.5 (04.05.2018) - Remove debug information diff --git a/xbox360controller/__init__.py b/xbox360controller/__init__.py index 5c406f6..53488ab 100644 --- a/xbox360controller/__init__.py +++ b/xbox360controller/__init__.py @@ -1,5 +1,5 @@ from xbox360controller.controller import Xbox360Controller __author__ = 'Linus Groh' -__version__ = '1.0.5' +__version__ = '1.0.6' __all__ = ['Xbox360Controller']