diff --git a/CHANGES.rst b/CHANGES.rst index 2941260..82fde91 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,14 @@ Changelog ========= +- 0.5.0: + - Add `kick` method for Device + - Emit Device instead of device_id on signals: connected, disconnected, message, error + - Remove JSON encoding + - Remove Fernet encryption + - Send `bytes` instead of `dict` + - Use `joined_lower` for function names + - 0.4.4: - Fix tox build workflow - Fix generating changelog diff --git a/QtPyNetwork/__init__.py b/QtPyNetwork/__init__.py index fdb004a..bc15077 100644 --- a/QtPyNetwork/__init__.py +++ b/QtPyNetwork/__init__.py @@ -21,4 +21,4 @@ - servers can be subclassed, but handlers should not be """ -__version__ = "0.4.4" +__version__ = "0.5.0"