Skip to content

Commit 773d877

Browse files
[v1.27.3] TLS Config Options for MQTT Builder (#659)
Co-authored-by: GitHub Actions <[email protected]>
1 parent c4aa9b9 commit 773d877

File tree

15 files changed

+22
-22
lines changed

15 files changed

+22
-22
lines changed

README.md

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

46-
Replace `1.27.2` in `<version>1.27.2</version>` with the latest release version for the SDK.
46+
Replace `1.27.3` in `<version>1.27.3</version>` with the latest release version for the SDK.
4747
Look up the latest SDK version here: https://github.com/aws/aws-iot-device-sdk-java-v2/releases
4848

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

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

107-
Latest released version: v1.27.2
107+
Latest released version: v1.27.3

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.27.2`)
56-
git clone --branch v1.27.2 --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.27.3`)
56+
git clone --branch v1.27.3 --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.27.2'
77+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.27.3'
7878
}
7979
```
80-
Replace `1.27.2` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.27.2` with the latest release version for the SDK.
80+
Replace `1.27.3` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.27.3` 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.27.2'
92+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.27.3'
9393
}
9494
```
95-
Replace `1.27.2` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.27.2` with the latest release version for the SDK
95+
Replace `1.27.3` in `software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.27.3` 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/AndroidKeyChainPubSub/src/main/java/androidkeychainpubsub/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.27.2</version>
23+
<version>1.27.3</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/Android/app/build.gradle

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

7777
dependencies {
7878
implementation fileTree(dir: 'libs', include: ['*.jar'])
79-
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.27.2'
79+
api 'software.amazon.awssdk.iotdevicesdk:aws-iot-device-sdk-android:1.27.3'
8080
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
8181
implementation 'androidx.appcompat:appcompat:1.1.0'
8282
implementation 'androidx.core:core:1.2.0'

samples/CommandsSandbox/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
4444
<artifactId>aws-iot-device-sdk</artifactId>
45-
<version>1.27.2</version>
45+
<version>1.27.3</version>
4646
</dependency>
4747
</dependencies>
4848
</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.27.2</version>
23+
<version>1.27.3</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.27.2</version>
23+
<version>1.27.3</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/JavaKeystoreConnect/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.27.2</version>
23+
<version>1.27.3</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/JobsSandbox/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
3939
<artifactId>aws-iot-device-sdk</artifactId>
40-
<version>1.27.2</version>
40+
<version>1.27.3</version>
4141
</dependency>
4242
</dependencies>
4343
</profile>

samples/Mqtt5/PubSub/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>software.amazon.awssdk.iotdevicesdk</groupId>
2929
<artifactId>aws-iot-device-sdk</artifactId>
30-
<version>1.27.2</version>
30+
<version>1.27.3</version>
3131
</dependency>
3232
</dependencies>
3333
</profile>

0 commit comments

Comments
 (0)