Skip to content

Commit

Permalink
Merge pull request #484 from ably/release/2.0.0-beta.5
Browse files Browse the repository at this point in the history
Release 2.0.0 beta.5
owenpearson authored Mar 27, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents 7432d13 + e0449e2 commit d7413d5
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## [v2.0.0-beta.5](https://github.com/ably/ably-python/tree/v2.0.0-beta.5)

The latest beta release of ably-python 2.0 makes some minor breaking changes, removing already soft-deprecated features from the 1.x branch. Most users will not be affected by these changes since the library was already warning that these features were deprecated. For information on how to migrate, please consult the [migration guide](https://github.com/ably/ably-python/blob/main/UPDATING.md).

[Full Changelog](https://github.com/ably/ably-python/compare/v2.0.0-beta.4...v2.0.0-beta.5)

- Remove soft-deprecated APIs [\#482](https://github.com/ably/ably-python/issues/482)
- Improve realtime client typings [\#476](https://github.com/ably/ably-python/issues/476)
- Improve REST client typings [\#477](https://github.com/ably/ably-python/issues/477)
- Stop raising `KeyError` when releasing a channel which doesn't exist [\#474](https://github.com/ably/ably-python/issues/474)

## [v2.0.0-beta.4](https://github.com/ably/ably-python/tree/v2.0.0-beta.4)

This new beta release of the ably-python realtime client implements token authentication for realtime connections, allowing you to use all currently supported token options to authenticate a realtime client (auth_url, auth_callback, jwt, etc). The client will reauthenticate when the token expires or otherwise becomes invalid.
2 changes: 1 addition & 1 deletion ably/__init__.py
Original file line number Diff line number Diff line change
@@ -15,4 +15,4 @@
logger.addHandler(logging.NullHandler())

api_version = '1.2'
lib_version = '2.0.0-beta.4'
lib_version = '2.0.0-beta.5'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ably"
version = "2.0.0-beta.4"
version = "2.0.0-beta.5"
description = "Python REST and Realtime client library SDK for Ably realtime messaging service"
license = "Apache-2.0"
authors = ["Ably <support@ably.com>"]

0 comments on commit d7413d5

Please sign in to comment.