Skip to content

Commit 4b80a3d

Browse files
authored
bump up crt lib version (#338)
1 parent cd532f1 commit 4b80a3d

File tree

18 files changed

+20
-20
lines changed

18 files changed

+20
-20
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ mkdir sdk-workspace
8181
cd sdk-workspace
8282
# Clone the CRT repository
8383
# (Use the latest version of the CRT here instead of "v0.18.0")
84-
git clone --branch v0.19.3 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
84+
git clone --branch v0.19.11 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
8585
cd aws-crt-java
8686
# Compile and install the CRT
8787
mvn install -Dmaven.test.skip=true
@@ -103,7 +103,7 @@ mkdir sdk-workspace
103103
cd sdk-workspace
104104
# Clone the CRT repository
105105
# (Use the latest version of the CRT here instead of "v0.18.0")
106-
git clone --branch v0.19.3 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
106+
git clone --branch v0.19.11 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
107107
# Compile and install the CRT for Android
108108
cd aws-crt-java/android
109109
./gradlew connectedCheck # optional, will run the unit tests on any connected devices/emulators
@@ -127,7 +127,7 @@ repositories {
127127
}
128128
129129
dependencies {
130-
implementation 'software.amazon.awssdk.crt:android:0.19.3'
130+
implementation 'software.amazon.awssdk.crt:android:0.19.11'
131131
}
132132
```
133133

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.19.3'
94+
api 'software.amazon.awssdk.crt:aws-crt-android:0.19.11'
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.10.4</version>
23+
<version>1.10.5</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.10.4</version>
23+
<version>1.10.5</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.10.4</version>
23+
<version>1.10.5</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/CustomKeyOpsPubSub/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.10.4</version>
23+
<version>1.10.5</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.10.4</version>
23+
<version>1.10.5</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/Identity/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.10.4</version>
23+
<version>1.10.5</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/Jobs/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.10.4</version>
23+
<version>1.10.5</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

samples/Pkcs11Connect/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.10.4</version>
23+
<version>1.10.5</version>
2424
</dependency>
2525
</dependencies>
2626
</profile>

0 commit comments

Comments
 (0)