diff --git a/CHANGES.txt b/CHANGES.txt index bb3f442c..9f4a1dcf 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,12 @@ CHANGES ======= +0.4.1 (2019-01-10) +------------------ + +* Fixed Python 3.5 support #161 (thanks @bmerry) + + 0.4.0 (2019-01-04) ------------------ diff --git a/aiomonitor/__init__.py b/aiomonitor/__init__.py index 432fa1e2..9325d075 100644 --- a/aiomonitor/__init__.py +++ b/aiomonitor/__init__.py @@ -26,4 +26,4 @@ __all__ = ('Monitor', 'start_monitor', 'MONITOR_HOST', 'MONITOR_PORT', 'CONSOLE_PORT') -__version__ = '0.4.0' +__version__ = '0.4.1'