Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup poetry
uses: abatilo/actions-poetry@v4
with:
poetry-version: '2.1.4'
poetry-version: '1.8.5'

- name: Setup a local virtual environment
run: |
Expand Down Expand Up @@ -56,6 +56,27 @@ jobs:
with:
name: python-package-distributions
path: dist/
- name: Check that wheel and tarball contains ably/sync/
run: |
# Check wheel
WHEEL=$(ls dist/*.whl | head -n 1)
echo "Checking wheel: $WHEEL"
if unzip -l "$WHEEL" | grep -q "ably/sync/"; then
echo "✅ Found ably/sync/ in wheel"
else
echo "❌ ably/sync/ not found in wheel"
exit 1
fi

# Check tarball
TARBALL=$(ls dist/*.tar.gz | head -n 1)
echo "Checking tarball: $TARBALL"
if tar -tzf "$TARBALL" | grep -q "ably/sync/"; then
echo "✅ Found ably/sync/ in tarball"
else
echo "❌ ably/sync/ not found in tarball"
exit 1
fi

publish-to-pypi:
name: Publish Python distribution to PyPI
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

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

[Full Changelog](https://github.com/ably/ably-python/compare/v2.1.0...v2.1.1)

## What's Changed

* Added missed `sync` folder to the wheel package

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

[Full Changelog](https://github.com/ably/ably-python/compare/v2.0.13...v2.1.0)
Expand Down
2 changes: 1 addition & 1 deletion ably/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
logger.addHandler(logging.NullHandler())

api_version = '3'
lib_version = '2.1.0'
lib_version = '2.1.1'
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.1.0"
version = "2.1.1"
description = "Python REST and Realtime client library SDK for Ably realtime messaging service"
license = "Apache-2.0"
authors = ["Ably <support@ably.com>"]
Expand Down