diff --git a/CHANGELOG.md b/CHANGELOG.md index 41d9787..0d0f4b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +v0.6.3 +====== + +* new command-line option `address` to specify the address to bind to [pull request](https://github.com/centrifugal/centrifuge/pull/57) +* it's now possible to provide `tornado_settings` in configuration file to pass initialization parameters to Tornado's HTTPServer instance [pull request](https://github.com/centrifugal/centrifuge/pull/60) : + +``` +{ + "password": "admin", + "cookie_secret": "secret", + "api_secret": "secret", + "tornado_settings": { + "xheaders": true + } +} +``` +* Toro dependency updated to version 0.8 + + v0.6.2 ====== diff --git a/centrifuge/__init__.py b/centrifuge/__init__.py index 24b2c2e..827cd14 100644 --- a/centrifuge/__init__.py +++ b/centrifuge/__init__.py @@ -1,4 +1,4 @@ # coding: utf-8 # Copyright (c) Alexandr Emelin. MIT license. -__version__ = "0.6.2" +__version__ = "0.6.3"