Skip to content

Commit 795699a

Browse files
[v1.13.2] Release action flush (#428)
Co-authored-by: GitHub Actions <[email protected]>
1 parent 2fdb94b commit 795699a

File tree

19 files changed

+27
-27
lines changed

19 files changed

+27
-27
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -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.
6363
Look 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*"
9191
mkdir sdk-workspace
9292
cd 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
9696
cd aws-crt-java
9797
# Compile and install the CRT
9898
mvn install -Dmaven.test.skip=true
@@ -113,8 +113,8 @@ NOTE: The shadow sample does not currently complete on android due to its depend
113113
mkdir sdk-workspace
114114
cd 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
119119
cd 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
141141
dependencies {
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.
147147
Look 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

185185
This library is licensed under the Apache 2.0 License.
186186

187-
Latest released version: v1.13.1
187+
Latest released version: v1.13.2

android/iotdevicesdk/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ repositories {
9191
}
9292

9393
dependencies {
94-
api 'software.amazon.awssdk.crt:aws-crt-android:0.21.14'
94+
api 'software.amazon.awssdk.crt:aws-crt-android:0.22.1'
9595
implementation 'org.slf4j:slf4j-api:1.7.30'
9696
implementation 'com.google.code.gson:gson:2.9.0'
9797
implementation 'androidx.appcompat:appcompat:1.1.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.13.0</version>
23+
<version>1.13.1</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.13.0</version>
23+
<version>1.13.1</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.13.0</version>
23+
<version>1.13.1</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.13.0</version>
23+
<version>1.13.1</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.13.0</version>
23+
<version>1.13.1</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.13.0</version>
23+
<version>1.13.1</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.13.0</version>
23+
<version>1.13.1</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/GreengrassIPC/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.13.0</version>
23+
<version>1.13.1</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

0 commit comments

Comments
 (0)