@@ -55,11 +55,11 @@ Consuming this SDK via Maven is the preferred method of consuming it and using i
5555<dependency >
5656 <groupId >software.amazon.awssdk.iotdevicesdk</groupId >
5757 <artifactId >aws-iot-device-sdk</artifactId >
58- <version >1.13.0 </version >
58+ <version >1.13.1 </version >
5959</dependency >
6060```
6161
62- Replace ` 1.13.0 ` in ` <version>1.13.0 </version> ` with the latest release version for the SDK.
62+ Replace ` 1.13.1 ` in ` <version>1.13.1 </version> ` with the latest release version for the SDK.
6363Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
6464
6565### Build IoT Device SDK from source
@@ -91,8 +91,8 @@ mvn versions:use-latest-versions -Dincludes="software.amazon.awssdk.crt*"
9191mkdir sdk-workspace
9292cd sdk-workspace
9393# Clone the CRT repository
94- # (Use the latest version of the CRT here instead of "v0.21.14 ")
95- git clone --branch v0.21.14 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
94+ # (Use the latest version of the CRT here instead of "v0.22.1 ")
95+ git clone --branch v0.22.1 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
9696cd aws-crt-java
9797# Compile and install the CRT
9898mvn install -Dmaven.test.skip=true
@@ -113,8 +113,8 @@ NOTE: The shadow sample does not currently complete on android due to its depend
113113mkdir sdk-workspace
114114cd sdk-workspace
115115# Clone the CRT repository
116- # (Use the latest version of the CRT here instead of "v0.21.14 ")
117- git clone --branch v0.21.14 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
116+ # (Use the latest version of the CRT here instead of "v0.22.1 ")
117+ git clone --branch v0.22.1 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
118118# Compile and install the CRT for Android
119119cd aws-crt-java/android
120120./gradlew connectedCheck # optional, will run the unit tests on any connected devices/emulators
@@ -139,11 +139,11 @@ repositories {
139139}
140140
141141dependencies {
142- implementation 'software.amazon.awssdk.crt:android:0.21.14 '
142+ implementation 'software.amazon.awssdk.crt:android:0.22.1 '
143143}
144144```
145145
146- Replace ` 0.21.14 ` in ` software.amazon.awssdk.crt:android:0.21.14 ` with the latest version of the CRT.
146+ Replace ` 0.22.1 ` in ` software.amazon.awssdk.crt:android:0.22.1 ` with the latest version of the CRT.
147147Look up the latest CRT version here: https://github.com/awslabs/aws-crt-java/releases
148148
149149#### Caution
@@ -184,4 +184,4 @@ We need your help in making this SDK great. Please participate in the community
184184
185185This library is licensed under the Apache 2.0 License.
186186
187- Latest released version: v1.13.1
187+ Latest released version: v1.13.2
0 commit comments