From b11e7cf46b1b68ed929896cefbcb3d1f5952459c Mon Sep 17 00:00:00 2001 From: evgeny Date: Mon, 17 Feb 2025 10:22:27 +0000 Subject: [PATCH] chore: bump version number and update CHANGELOG.md --- CHANGELOG.md | 4 ++++ ably/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dced594..bb1c7c9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [v2.0.10](https://github.com/ably/ably-python/tree/v2.0.10) + +Fixed sync version of the library + ## [v2.0.9](https://github.com/ably/ably-python/tree/v2.0.9) [Full Changelog](https://github.com/ably/ably-python/compare/v2.0.8...v2.0.9) diff --git a/ably/__init__.py b/ably/__init__.py index 7de6b7d4..9ea3cb8e 100644 --- a/ably/__init__.py +++ b/ably/__init__.py @@ -15,4 +15,4 @@ logger.addHandler(logging.NullHandler()) api_version = '3' -lib_version = '2.0.9' +lib_version = '2.0.10' diff --git a/pyproject.toml b/pyproject.toml index cd9bd0fe..8078889e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ably" -version = "2.0.9" +version = "2.0.10" description = "Python REST and Realtime client library SDK for Ably realtime messaging service" license = "Apache-2.0" authors = ["Ably "]