From 005ae3a23a5132ca3fcc03a7356719bd0750c6e3 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Mon, 7 May 2018 01:33:13 +0200 Subject: [PATCH] Release 1.1.0 --- CHANGES.md | 7 ++++++- xbox360controller/__init__.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index b9b8030..88d99b7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,10 @@ ## [Unreleased] +## [1.1.0] - 2018-05-07 +### Changed +- Push development status to 'Beta' + ## [1.0.6] - 2018-05-07 ### Changed - Fix bug where event loop won't exit until next event @@ -42,7 +46,8 @@ - Added some documentation - Released on GitHub and PyPI -[Unreleased]: https://github.com/linusg/xbox360controller/compare/v1.0.6...HEAD +[Unreleased]: https://github.com/linusg/xbox360controller/compare/v1.1.0...HEAD +[1.1.0]: https://github.com/linusg/xbox360controller/compare/v1.0.6...v1.1.0 [1.0.6]: https://github.com/linusg/xbox360controller/compare/v1.0.5...v1.0.6 [1.0.5]: https://github.com/linusg/xbox360controller/compare/v1.0.4...v1.0.5 [1.0.4]: https://github.com/linusg/xbox360controller/compare/v1.0.3...v1.0.4 diff --git a/xbox360controller/__init__.py b/xbox360controller/__init__.py index 53488ab..b2846f9 100644 --- a/xbox360controller/__init__.py +++ b/xbox360controller/__init__.py @@ -1,5 +1,5 @@ from xbox360controller.controller import Xbox360Controller __author__ = 'Linus Groh' -__version__ = '1.0.6' +__version__ = '1.1.0' __all__ = ['Xbox360Controller']