Skip to content

Commit

Permalink
release(2020-06-12): bump package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
az-iot-builder-01 committed Jun 10, 2020
1 parent 0ca0035 commit 3b1becf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class TransportUtils
public static String IOTHUB_API_VERSION_PREVIEW = "2020-05-31-preview";

private static final String JAVA_DEVICE_CLIENT_IDENTIFIER = "com.microsoft.azure.sdk.iot.iot-device-client";
private static final String CLIENT_VERSION = "1.22.0";
private static final String CLIENT_VERSION = "1.23.0";

private static String JAVA_RUNTIME = System.getProperty("java.version");
private static String OPERATING_SYSTEM = System.getProperty("java.runtime.name").toLowerCase().contains("android") ? "Android" : System.getProperty("os.name");
Expand Down
2 changes: 1 addition & 1 deletion device/iot-device-samples/android-sample/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies {
testImplementation 'junit:junit:4.12'

// Remote binary dependency
api ('com.microsoft.azure.sdk.iot:iot-device-client:1.22.0') {
api ('com.microsoft.azure.sdk.iot:iot-device-client:1.23.0') {
exclude module: 'slf4j-api'
exclude module:'azure-storage'
}
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
<dice-provider-artifact-id>dice-provider</dice-provider-artifact-id>
<x509-provider-artifact-id>x509-provider</x509-provider-artifact-id>

<iot-device-client-version>1.22.0</iot-device-client-version>
<iot-service-client-version>1.22.0</iot-service-client-version>
<iot-deps-version>0.9.4</iot-deps-version>
<iot-device-client-version>1.23.0</iot-device-client-version>
<iot-service-client-version>1.23.0</iot-service-client-version>
<iot-deps-version>0.9.5</iot-deps-version>
<provisioning-device-client-version>1.8.2</provisioning-device-client-version>
<provisioning-service-client-version>1.6.1</provisioning-service-client-version>
<security-provider-version>1.3.0</security-provider-version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class TransportUtils
/** Version identifier key */
public static final String versionIdentifierKey = "com.microsoft:client-version";
public static String javaServiceClientIdentifier = "com.microsoft.azure.sdk.iot.iot-service-client/";
public static String serviceVersion = "1.22.0";
public static String serviceVersion = "1.23.0";

private static String JAVA_RUNTIME = System.getProperty("java.version");
private static String OPERATING_SYSTEM = System.getProperty("java.runtime.name").toLowerCase().contains("android") ? "Android" : System.getProperty("os.name");
Expand Down

0 comments on commit 3b1becf

Please sign in to comment.