diff --git a/CHANGELOG.md b/CHANGELOG.md index 437d1dfb..b99665b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## [v2.0.7](https://github.com/ably/ably-python/tree/v2.0.7) + +[Full Changelog](https://github.com/ably/ably-python/compare/v2.0.6...v2.0.7) + +**Fixed bugs:** + +- Decoding issue for 40010 Error \(Invalid Channel Name\) [\#569](https://github.com/ably/ably-python/issues/569) + ## [v2.0.6](https://github.com/ably/ably-python/tree/v2.0.6) [Full Changelog](https://github.com/ably/ably-python/compare/v2.0.5...v2.0.6) diff --git a/ably/__init__.py b/ably/__init__.py index 698ecc4e..19e464bf 100644 --- a/ably/__init__.py +++ b/ably/__init__.py @@ -15,4 +15,4 @@ logger.addHandler(logging.NullHandler()) api_version = '3' -lib_version = '2.0.6' +lib_version = '2.0.7' diff --git a/pyproject.toml b/pyproject.toml index 8e04afe6..47cb8604 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ably" -version = "2.0.6" +version = "2.0.7" description = "Python REST and Realtime client library SDK for Ably realtime messaging service" license = "Apache-2.0" authors = ["Ably "]