Skip to content

Commit 8021524

Browse files
authored
Merge pull request #631 from ably/release/2.1.1
Release 2.1.1
2 parents 9ec513b + 7e67dc3 commit 8021524

File tree

4 files changed

+32
-3
lines changed

4 files changed

+32
-3
lines changed

.github/workflows/release.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup poetry
2525
uses: abatilo/actions-poetry@v4
2626
with:
27-
poetry-version: '2.1.4'
27+
poetry-version: '1.8.5'
2828

2929
- name: Setup a local virtual environment
3030
run: |
@@ -56,6 +56,27 @@ jobs:
5656
with:
5757
name: python-package-distributions
5858
path: dist/
59+
- name: Check that wheel and tarball contains ably/sync/
60+
run: |
61+
# Check wheel
62+
WHEEL=$(ls dist/*.whl | head -n 1)
63+
echo "Checking wheel: $WHEEL"
64+
if unzip -l "$WHEEL" | grep -q "ably/sync/"; then
65+
echo "✅ Found ably/sync/ in wheel"
66+
else
67+
echo "❌ ably/sync/ not found in wheel"
68+
exit 1
69+
fi
70+
71+
# Check tarball
72+
TARBALL=$(ls dist/*.tar.gz | head -n 1)
73+
echo "Checking tarball: $TARBALL"
74+
if tar -tzf "$TARBALL" | grep -q "ably/sync/"; then
75+
echo "✅ Found ably/sync/ in tarball"
76+
else
77+
echo "❌ ably/sync/ not found in tarball"
78+
exit 1
79+
fi
5980
6081
publish-to-pypi:
6182
name: Publish Python distribution to PyPI

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## [v2.1.1](https://github.com/ably/ably-python/tree/v2.1.1)
4+
5+
[Full Changelog](https://github.com/ably/ably-python/compare/v2.1.0...v2.1.1)
6+
7+
## What's Changed
8+
9+
* Added missed `sync` folder to the wheel package
10+
311
## [v2.1.0](https://github.com/ably/ably-python/tree/v2.1.0)
412

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

ably/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
logger.addHandler(logging.NullHandler())
1717

1818
api_version = '3'
19-
lib_version = '2.1.0'
19+
lib_version = '2.1.1'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ably"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
description = "Python REST and Realtime client library SDK for Ably realtime messaging service"
55
license = "Apache-2.0"
66
authors = ["Ably <[email protected]>"]

0 commit comments

Comments
 (0)