diff --git a/AWSIoTPythonSDK/__init__.py b/AWSIoTPythonSDK/__init__.py index a06ff4e..3a384fb 100755 --- a/AWSIoTPythonSDK/__init__.py +++ b/AWSIoTPythonSDK/__init__.py @@ -1 +1 @@ -__version__ = "1.5.3" +__version__ = "1.5.4" diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5ebb619..15ad4b5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,9 @@ CHANGELOG ========= +1.5.4 +* chore: CD pipeline flushing try #1 + 1.5.3 * improvement: Support Python3.12+ by conditionally removing deprecated API usage diff --git a/continuous-delivery/publish_to_test_pypi.yml b/continuous-delivery/publish_to_test_pypi.yml index 49a69c9..c435e5e 100644 --- a/continuous-delivery/publish_to_test_pypi.yml +++ b/continuous-delivery/publish_to_test_pypi.yml @@ -10,7 +10,7 @@ phases: - python3 -m pip install --user --upgrade twine setuptools wheel awscli PyOpenSSL six pre_build: commands: - - pypirc=$(aws secretsmanager get-secret-value --secret-id "alpha/aws-crt-python/.pypirc" --query "SecretString" | cut -f2 -d\") && echo "$pypirc" > ~/.pypirc + - pypirc=$(aws secretsmanager get-secret-value --secret-id "alpha/aws-sdk-python-v1/.pypirc" --query "SecretString" | cut -f2 -d\") && echo "$pypirc" > ~/.pypirc - cd aws-iot-device-sdk-python - export PKG_VERSION=$(git describe --tags | cut -f2 -dv) - echo "Updating package version to ${PKG_VERSION}"