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']