Skip to content

Commit 7ceae8d

Browse files
authored
Mqtt311 ping update, Mqtt5 extended validation relaxation (#462)
1 parent b2f665f commit 7ceae8d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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.24.1")
95-
git clone --branch v0.24.1 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
94+
# (Use the latest version of the CRT here instead of "v0.25.0")
95+
git clone --branch v0.25.0 --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.24.1")
117-
git clone --branch v0.24.1 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
116+
# (Use the latest version of the CRT here instead of "v0.25.0")
117+
git clone --branch v0.25.0 --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,12 +139,12 @@ repositories {
139139
}
140140
141141
dependencies {
142-
implementation 'software.amazon.awssdk.crt:android:0.24.1'
142+
implementation 'software.amazon.awssdk.crt:android:0.25.0'
143143
}
144144
```
145145
[Android IoT Samples README](./android/app/src/main/assets/README.md)
146146

147-
Replace `0.24.1` in `software.amazon.awssdk.crt:android:0.24.1` with the latest version of the CRT.
147+
Replace `0.25.0` in `software.amazon.awssdk.crt:android:0.25.0` with the latest version of the CRT.
148148
Look up the latest CRT version here: https://github.com/awslabs/aws-crt-java/releases
149149

150150
## Samples

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.24.1'
94+
api 'software.amazon.awssdk.crt:aws-crt-android:0.25.0'
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'

sdk/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.crt</groupId>
4444
<artifactId>aws-crt</artifactId>
45-
<version>0.24.1</version>
45+
<version>0.25.0</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>org.slf4j</groupId>

0 commit comments

Comments
 (0)