Skip to content

Commit 2f5f68c

Browse files
[v1.20.2] Update CRT and bug fixes (#569)
Co-authored-by: GitHub Actions <[email protected]>
1 parent 829ab89 commit 2f5f68c

File tree

21 files changed

+28
-28
lines changed

21 files changed

+28
-28
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ Consuming this SDK via Maven is the preferred method of consuming it and using i
3838
<dependency>
3939
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
4040
<artifactId>aws-iot-device-sdk</artifactId>
41-
<version>1.20.1</version>
41+
<version>1.20.2</version>
4242
</dependency>
4343
```
4444

45-
Replace `1.20.1` in `<version>1.20.1</version>` with the latest release version for the SDK.
45+
Replace `1.20.2` in `<version>1.20.2</version>` with the latest release version for the SDK.
4646
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
4747

4848
### Build IoT Device SDK from source
@@ -95,4 +95,4 @@ is provided by code that been generated from a model of the service.
9595

9696
This library is licensed under the [Apache 2.0 License](./documents/LICENSE).
9797

98-
Latest released version: v1.20.1
98+
Latest released version: v1.20.2

documents/ANDROID.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ a dependency of the aws-iot-device-sdk-android library.
5252
mkdir sdk-workspace
5353
cd sdk-workspace
5454
# Clone the SDK repository
55-
# (Use the latest version of the SDK here instead of `v1.20.1`)
56-
git clone --branch v1.20.1 --recurse-submodules https://github.com/aws/aws-iot-device-sdk-java-v2.git
55+
# (Use the latest version of the SDK here instead of `v1.20.2`)
56+
git clone --branch v1.20.2 --recurse-submodules https://github.com/aws/aws-iot-device-sdk-java-v2.git
5757
# Compile and install the SDK for Android
5858
cd aws-iot-device-sdk-java-v2/android
5959
./gradlew build
@@ -74,10 +74,10 @@ repositories {
7474
}
7575
7676
dependencies {
77-
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.1'
77+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.2'
7878
}
7979
```
80-
Replace `1.20.1` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.1` with the latest release version for the SDK.
80+
Replace `1.20.2` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.2` with the latest release version for the SDK.
8181
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
8282

8383
### Consuming from locally installed
@@ -89,10 +89,10 @@ repositories {
8989
}
9090
9191
dependencies {
92-
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.1'
92+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.2'
9393
}
9494
```
95-
Replace `1.20.1` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.1` with the latest release version for the SDK
95+
Replace `1.20.2` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.2` with the latest release version for the SDK
9696
or replace with `1.0.0-SNAPSHOT` to use the SDK built and installed from source.
9797
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
9898

samples/Android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ android {
6161

6262
dependencies {
6363
implementation fileTree(dir: 'libs', include: ['*.jar'])
64-
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.1'
64+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.20.2'
6565
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
6666
implementation 'androidx.appcompat:appcompat:1.1.0'
6767
implementation 'androidx.core:core:1.2.0'

samples/BasicConnect/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.1</version>
23+
<version>1.20.2</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/BasicPubSub/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.1</version>
23+
<version>1.20.2</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/CognitoConnect/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.1</version>
23+
<version>1.20.2</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/CustomAuthorizerConnect/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.1</version>
23+
<version>1.20.2</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/CustomKeyOpsConnect/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.1</version>
23+
<version>1.20.2</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/FleetProvisioning/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.1</version>
23+
<version>1.20.2</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/Greengrass/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2222
<artifactId>aws-iot-device-sdk</artifactId>
23-
<version>1.20.1</version>
23+
<version>1.20.2</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

0 commit comments

Comments
 (0)