From 85de972faba9b0635f7340d805f0a6e33ee06742 Mon Sep 17 00:00:00 2001 From: evgeny Date: Wed, 9 Sep 2026 11:49:00 +0100 Subject: [PATCH 1/2] chore: bump version to 3.1.3 Co-Authored-By: Claude Opus 5 (1M context) --- ably/__init__.py | 2 +- pyproject.toml | 2 +- uv.lock | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ably/__init__.py b/ably/__init__.py index e050b7c5..31554bab 100644 --- a/ably/__init__.py +++ b/ably/__init__.py @@ -21,4 +21,4 @@ logger.addHandler(logging.NullHandler()) api_version = '5' -lib_version = '3.1.2' +lib_version = '3.1.3' diff --git a/pyproject.toml b/pyproject.toml index e4dbab6e..48820e90 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ably" -version = "3.1.2" +version = "3.1.3" description = "Python REST and Realtime client library SDK for Ably realtime messaging service" readme = "LONG_DESCRIPTION.rst" requires-python = ">=3.7" diff --git a/uv.lock b/uv.lock index 30a4df76..2c5a0857 100644 --- a/uv.lock +++ b/uv.lock @@ -10,7 +10,7 @@ resolution-markers = [ [[package]] name = "ably" -version = "3.1.2" +version = "3.1.3" source = { editable = "." } dependencies = [ { name = "h2", version = "4.1.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.9'" }, From 8764af19a6ee581b627330abaa07b29ca99adc22 Mon Sep 17 00:00:00 2001 From: evgeny Date: Wed, 9 Sep 2026 11:49:24 +0100 Subject: [PATCH 2/2] docs: update CHANGELOG for 3.1.3 release Co-Authored-By: Claude Opus 5 (1M context) --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 793f50c0..a3d72698 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## [3.1.3](https://github.com/ably/ably-python/tree/v3.1.3) + +[Full Changelog](https://github.com/ably/ably-python/compare/v3.1.2...v3.1.3) + +### What's Changed + +- Fixed `ping()` so a timed-out, rejected, or connection-dropped ping no longer leaves a stale future behind that made every later `ping()` call fail or hang [#687](https://github.com/ably/ably-python/pull/687) +- Annotation `data` is now encrypted on publish and decrypted on REST `get()` for channels with a cipher configured, instead of being sent in plaintext [#680](https://github.com/ably/ably-python/pull/680) +- Fixed the "unable to attach" log to report the connection state that is blocking the attach rather than the channel state [#653](https://github.com/ably/ably-python/pull/653) + ## [3.1.2](https://github.com/ably/ably-python/tree/v3.1.2) [Full Changelog](https://github.com/ably/ably-python/compare/v3.1.1...v3.1.2)