Skip to content

Commit 116b151

Browse files
committed
Bump package versions for release 2017-1-27
1 parent bf1d13c commit 116b151

File tree

15 files changed

+25
-25
lines changed

15 files changed

+25
-25
lines changed

device/iot-device-client/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>com.microsoft.azure.sdk.iot</groupId>
1515
<artifactId>iot-device-client-parent</artifactId>
16-
<version>1.0.17</version>
16+
<version>1.0.18</version>
1717
</parent>
1818
<properties>
1919
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>com.microsoft.azure.sdk.iot.deps</groupId>
3131
<artifactId>websocket-transport-layer</artifactId>
32-
<version>0.1.2</version>
32+
<version>0.1.3</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>org.bouncycastle</groupId>
@@ -69,7 +69,7 @@
6969
<dependency>
7070
<groupId>com.microsoft.azure.sdk.iot</groupId>
7171
<artifactId>iot-service-client</artifactId>
72-
<version>1.0.12</version>
72+
<version>1.0.13</version>
7373
<scope>test</scope>
7474
</dependency>
7575
<dependency>

device/iot-device-client/src/main/java/com/microsoft/azure/sdk/iot/device/transport/TransportUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
public class TransportUtils
77
{
88
public static String javaDeviceClientIdentifier = "com.microsoft.azure.sdk.iot.iot-device-client/";
9-
public static String clientVersion = "1.0.17";
9+
public static String clientVersion = "1.0.18";
1010

1111
private static byte[] sleepIntervals = {1, 2, 4, 8, 16, 32, 60};
1212
/** Generates a reconnection time with an exponential backoff

device/iot-device-samples/handle-messages/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
1414
<artifactId>iot-device-samples</artifactId>
15-
<version>1.0.17</version>
15+
<version>1.0.18</version>
1616
</parent>
1717
<properties>
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

device/iot-device-samples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>com.microsoft.azure.sdk.iot</groupId>
1616
<artifactId>iot-device-client-parent</artifactId>
17-
<version>1.0.17</version>
17+
<version>1.0.18</version>
1818
</parent>
1919
<modules>
2020
<module>send-event</module>
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>com.microsoft.azure.sdk.iot</groupId>
2828
<artifactId>iot-device-client</artifactId>
29-
<version>1.0.17</version>
29+
<version>1.0.18</version>
3030
</dependency>
3131
</dependencies>
3232
<build>

device/iot-device-samples/send-event/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
1414
<artifactId>iot-device-samples</artifactId>
15-
<version>1.0.17</version>
15+
<version>1.0.18</version>
1616
</parent>
1717
<properties>
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

device/iot-device-samples/send-receive-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
1414
<artifactId>iot-device-samples</artifactId>
15-
<version>1.0.17</version>
15+
<version>1.0.18</version>
1616
</parent>
1717
<properties>
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

device/iot-device-samples/send-serialized-event/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
1414
<artifactId>iot-device-samples</artifactId>
15-
<version>1.0.17</version>
15+
<version>1.0.18</version>
1616
</parent>
1717
<dependencies>
1818
<dependency>

device/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.microsoft.azure.sdk.iot</groupId>
55
<artifactId>iot-device-client-parent</artifactId>
6-
<version>1.0.17</version>
6+
<version>1.0.18</version>
77
<name>IoT Hub Java Device Client Parent </name>
88
<packaging>pom</packaging>
99
<developers>

service/iot-service-client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.microsoft.azure.sdk.iot</groupId>
1414
<artifactId>iot-service-client-parent</artifactId>
15-
<version>1.0.12</version>
15+
<version>1.0.13</version>
1616
</parent>
1717
<properties>
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>com.microsoft.azure.sdk.iot.deps</groupId>
5959
<artifactId>websocket-transport-layer</artifactId>
60-
<version>0.1.2</version>
60+
<version>0.1.3</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>com.microsoft.azure</groupId>

service/iot-service-client/src/main/java/com/microsoft/azure/sdk/iot/service/transport/TransportUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ public class TransportUtils
88
/** Version identifier key */
99
public static final String versionIdentifierKey = "com.microsoft:client-version";
1010
public static String javaServiceClientIdentifier = "com.microsoft.azure.sdk.iot.iot-service-client/";
11-
public static String serviceVersion = "1.0.12";
11+
public static String serviceVersion = "1.0.13";
1212
}

0 commit comments

Comments
 (0)