Skip to content

Commit 44a67bc

Browse files
authored
Update awscrt to 0.5.11 (#39)
Update `awscrt` to version 0.5.11. Improvements include: - MQTT improvements - Fix `on_connection_resumed` callback's `return_code` argument. - Reduce default duration between MQTT keep-alive pings. - Drop connection if server CONNACK takes too long. - Fix crash-on-exit which was common on Windows. - GCC 8 support
1 parent 65454ac commit 44a67bc

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

continuous-delivery/test_version_exists

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,13 @@ if [ "$CURRENT_TAG" != "$CURRENT_TAG_VERSION" ]; then
1313
exit 1
1414
fi
1515

16-
if pip install -vvv awsiotsdk==$CURRENT_TAG_VERSION; then
16+
SETUP_PY_VERSION=$(python setup.py --version)
17+
if [ "$CURRENT_TAG_VERSION" != "$SETUP_PY_VERSION" ]; then
18+
echo "Current tag version does not match version in setup.py: $CURRENT_TAG_VERSION != $SETUP_PY_VERSION"
19+
exit 1
20+
fi
21+
22+
if pip install --no-cache-dir -vvv awsiotsdk==$CURRENT_TAG_VERSION; then
1723
echo "$CURRENT_TAG_VERSION is already in pypi, cut a new tag if you want to upload another version."
1824
exit 1
1925
fi

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717

1818
setup(
1919
name='awsiotsdk',
20-
version='1.0.3',
20+
version='1.0.4',
2121
description='AWS IoT SDK based on the AWS Common Runtime',
2222
author='AWS SDK Common Runtime Team',
2323
url='https://github.com/aws/aws-iot-device-sdk-python-v2',
2424
packages = ['awsiot'],
2525
install_requires=[
26-
'awscrt==0.5.6',
26+
'awscrt==0.5.11',
2727
'futures;python_version<"3.2"',
2828
'typing;python_version<"3.5"',
2929
],

0 commit comments

Comments
 (0)