From 795699a99cac8305ed858d18607e0a31de288f35 Mon Sep 17 00:00:00 2001 From: Bret Ambrose Date: Thu, 8 Jun 2023 09:06:16 -0700 Subject: [PATCH] [v1.13.2] Release action flush (#428) Co-authored-by: GitHub Actions --- README.md | 18 +++++++++--------- android/iotdevicesdk/build.gradle | 2 +- samples/BasicConnect/pom.xml | 2 +- samples/BasicPubSub/pom.xml | 2 +- samples/CognitoConnect/pom.xml | 2 +- samples/CustomAuthorizerConnect/pom.xml | 2 +- samples/CustomKeyOpsConnect/pom.xml | 2 +- samples/FleetProvisioning/pom.xml | 2 +- samples/Greengrass/pom.xml | 2 +- samples/GreengrassIPC/pom.xml | 2 +- samples/JavaKeystoreConnect/pom.xml | 2 +- samples/Jobs/pom.xml | 2 +- samples/Pkcs11Connect/pom.xml | 2 +- samples/Pkcs12Connect/pom.xml | 2 +- samples/Shadow/pom.xml | 2 +- samples/WebsocketConnect/pom.xml | 2 +- samples/WindowsCertConnect/pom.xml | 2 +- samples/X509CredentialsProviderConnect/pom.xml | 2 +- sdk/pom.xml | 2 +- 19 files changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index abbbafc0b..f65dc8716 100644 --- a/README.md +++ b/README.md @@ -55,11 +55,11 @@ Consuming this SDK via Maven is the preferred method of consuming it and using i software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 ``` -Replace `1.13.0` in `1.13.0` with the latest release version for the SDK. +Replace `1.13.1` in `1.13.1` with the latest release version for the SDK. Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases ### Build IoT Device SDK from source @@ -91,8 +91,8 @@ mvn versions:use-latest-versions -Dincludes="software.amazon.awssdk.crt*" mkdir sdk-workspace cd sdk-workspace # Clone the CRT repository -# (Use the latest version of the CRT here instead of "v0.21.14") -git clone --branch v0.21.14 --recurse-submodules https://github.com/awslabs/aws-crt-java.git +# (Use the latest version of the CRT here instead of "v0.22.1") +git clone --branch v0.22.1 --recurse-submodules https://github.com/awslabs/aws-crt-java.git cd aws-crt-java # Compile and install the CRT mvn install -Dmaven.test.skip=true @@ -113,8 +113,8 @@ NOTE: The shadow sample does not currently complete on android due to its depend mkdir sdk-workspace cd sdk-workspace # Clone the CRT repository -# (Use the latest version of the CRT here instead of "v0.21.14") -git clone --branch v0.21.14 --recurse-submodules https://github.com/awslabs/aws-crt-java.git +# (Use the latest version of the CRT here instead of "v0.22.1") +git clone --branch v0.22.1 --recurse-submodules https://github.com/awslabs/aws-crt-java.git # Compile and install the CRT for Android cd aws-crt-java/android ./gradlew connectedCheck # optional, will run the unit tests on any connected devices/emulators @@ -139,11 +139,11 @@ repositories { } dependencies { - implementation 'software.amazon.awssdk.crt:android:0.21.14' + implementation 'software.amazon.awssdk.crt:android:0.22.1' } ``` -Replace `0.21.14` in `software.amazon.awssdk.crt:android:0.21.14` with the latest version of the CRT. +Replace `0.22.1` in `software.amazon.awssdk.crt:android:0.22.1` with the latest version of the CRT. Look up the latest CRT version here: https://github.com/awslabs/aws-crt-java/releases #### Caution @@ -184,4 +184,4 @@ We need your help in making this SDK great. Please participate in the community This library is licensed under the Apache 2.0 License. -Latest released version: v1.13.1 +Latest released version: v1.13.2 diff --git a/android/iotdevicesdk/build.gradle b/android/iotdevicesdk/build.gradle index 221c95deb..67afbc33e 100644 --- a/android/iotdevicesdk/build.gradle +++ b/android/iotdevicesdk/build.gradle @@ -91,7 +91,7 @@ repositories { } dependencies { - api 'software.amazon.awssdk.crt:aws-crt-android:0.21.14' + api 'software.amazon.awssdk.crt:aws-crt-android:0.22.1' implementation 'org.slf4j:slf4j-api:1.7.30' implementation 'com.google.code.gson:gson:2.9.0' implementation 'androidx.appcompat:appcompat:1.1.0' diff --git a/samples/BasicConnect/pom.xml b/samples/BasicConnect/pom.xml index fc4950efe..f565e20eb 100644 --- a/samples/BasicConnect/pom.xml +++ b/samples/BasicConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/samples/BasicPubSub/pom.xml b/samples/BasicPubSub/pom.xml index 17f89050a..d41dc46b5 100644 --- a/samples/BasicPubSub/pom.xml +++ b/samples/BasicPubSub/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/samples/CognitoConnect/pom.xml b/samples/CognitoConnect/pom.xml index c8d2d2a0d..0bdc05566 100644 --- a/samples/CognitoConnect/pom.xml +++ b/samples/CognitoConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/samples/CustomAuthorizerConnect/pom.xml b/samples/CustomAuthorizerConnect/pom.xml index b1183bc29..780b9a7a1 100644 --- a/samples/CustomAuthorizerConnect/pom.xml +++ b/samples/CustomAuthorizerConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/samples/CustomKeyOpsConnect/pom.xml b/samples/CustomKeyOpsConnect/pom.xml index e8ae52086..2bf2dd8cc 100644 --- a/samples/CustomKeyOpsConnect/pom.xml +++ b/samples/CustomKeyOpsConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/samples/FleetProvisioning/pom.xml b/samples/FleetProvisioning/pom.xml index b0ea57a8a..261af82eb 100644 --- a/samples/FleetProvisioning/pom.xml +++ b/samples/FleetProvisioning/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/samples/Greengrass/pom.xml b/samples/Greengrass/pom.xml index 6cec32f06..01c6607dd 100644 --- a/samples/Greengrass/pom.xml +++ b/samples/Greengrass/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/samples/GreengrassIPC/pom.xml b/samples/GreengrassIPC/pom.xml index 5e5bd422a..098813d3c 100644 --- a/samples/GreengrassIPC/pom.xml +++ b/samples/GreengrassIPC/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/samples/JavaKeystoreConnect/pom.xml b/samples/JavaKeystoreConnect/pom.xml index 2a5d51bf6..fc4b0ee23 100644 --- a/samples/JavaKeystoreConnect/pom.xml +++ b/samples/JavaKeystoreConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/samples/Jobs/pom.xml b/samples/Jobs/pom.xml index f38f4f897..6f61a4fb9 100644 --- a/samples/Jobs/pom.xml +++ b/samples/Jobs/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/samples/Pkcs11Connect/pom.xml b/samples/Pkcs11Connect/pom.xml index e313aada6..69e9af316 100644 --- a/samples/Pkcs11Connect/pom.xml +++ b/samples/Pkcs11Connect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/samples/Pkcs12Connect/pom.xml b/samples/Pkcs12Connect/pom.xml index 41affdbad..96f0cc926 100644 --- a/samples/Pkcs12Connect/pom.xml +++ b/samples/Pkcs12Connect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/samples/Shadow/pom.xml b/samples/Shadow/pom.xml index cdd1a8f17..755a9bcc6 100644 --- a/samples/Shadow/pom.xml +++ b/samples/Shadow/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/samples/WebsocketConnect/pom.xml b/samples/WebsocketConnect/pom.xml index bfeb8d132..49be3e65c 100644 --- a/samples/WebsocketConnect/pom.xml +++ b/samples/WebsocketConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/samples/WindowsCertConnect/pom.xml b/samples/WindowsCertConnect/pom.xml index c196d8fd8..9f37b8287 100644 --- a/samples/WindowsCertConnect/pom.xml +++ b/samples/WindowsCertConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/samples/X509CredentialsProviderConnect/pom.xml b/samples/X509CredentialsProviderConnect/pom.xml index 6ebc8acf5..2ac8c680e 100644 --- a/samples/X509CredentialsProviderConnect/pom.xml +++ b/samples/X509CredentialsProviderConnect/pom.xml @@ -20,7 +20,7 @@ software.amazon.awssdk.iotdevicesdk aws-iot-device-sdk - 1.13.0 + 1.13.1 diff --git a/sdk/pom.xml b/sdk/pom.xml index 9e1e951e0..537fb1f01 100644 --- a/sdk/pom.xml +++ b/sdk/pom.xml @@ -42,7 +42,7 @@ software.amazon.awssdk.crt aws-crt - 0.21.14 + 0.22.1 org.slf4j