diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a6a2dcf..6913dac0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## [v2.0.0-beta.2](https://github.com/ably/ably-python/tree/v2.0.0-beta.2) + +[Full Changelog](https://github.com/ably/ably-python/compare/v2.0.0-beta.1...v2.0.0-beta.2) +- Fix a bug with realtime_host configuration [\#358](https://github.com/ably/ably-python/pull/358) + ## [v2.0.0-beta.1](https://github.com/ably/ably-python/tree/v2.0.0-beta.1) **New ably-python realtime client**: This beta release features our first ever python realtime client! Currently the realtime client only supports basic authentication and realtime message subscription. Check out the README for usage examples. diff --git a/ably/__init__.py b/ably/__init__.py index ed9c6e09..1d0d927c 100644 --- a/ably/__init__.py +++ b/ably/__init__.py @@ -15,4 +15,4 @@ logger.addHandler(logging.NullHandler()) api_version = '1.2' -lib_version = '2.0.0-beta.1' +lib_version = '2.0.0-beta.2' diff --git a/pyproject.toml b/pyproject.toml index d18ac3f7..8fc5b277 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ably" -version = "2.0.0-beta.1" +version = "2.0.0-beta.2" description = "Python REST and Realtime client library SDK for Ably realtime messaging service" license = "Apache-2.0" authors = ["Ably "]