diff --git a/CHANGELOG.md b/CHANGELOG.md index 23d4d50..c35faa1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +v0.8.2 +====== + +* fix for Python 3 in web interface AuthHandler - token could not be serialized into json. + v0.8.1 ====== diff --git a/centrifuge/__init__.py b/centrifuge/__init__.py index 06e4f53..581331c 100644 --- a/centrifuge/__init__.py +++ b/centrifuge/__init__.py @@ -1,4 +1,4 @@ # coding: utf-8 # Copyright (c) Alexandr Emelin. MIT license. -__version__ = "0.8.1" +__version__ = "0.8.2"