diff --git a/README.rst b/README.rst index 282fbfc..21e8be1 100644 --- a/README.rst +++ b/README.rst @@ -114,6 +114,9 @@ Usage Changelog ========= +Version 0.6.1 +* Python 3.7 support (no automated test coverage) + Version 0.6.0 ------------- * Lots of bugfixes and performance improvements. diff --git a/quamash/__init__.py b/quamash/__init__.py index 1a88e75..1c16118 100644 --- a/quamash/__init__.py +++ b/quamash/__init__.py @@ -4,7 +4,7 @@ """Implementation of the PEP 3156 Event-Loop with Qt.""" __author__ = 'Mark Harviston , Arve Knudsen ' -__version__ = '0.6.0' +__version__ = '0.6.1' __url__ = 'https://github.com/harvimt/quamash' __license__ = 'BSD' __all__ = ['QEventLoop', 'QThreadExecutor']