Skip to content

Commit

Permalink
Bump package versions for release 2017-5-19
Browse files Browse the repository at this point in the history
  • Loading branch information
mamokarz committed May 19, 2017
1 parent 246701f commit 6fb311f
Show file tree
Hide file tree
Showing 24 changed files with 47 additions and 47 deletions.
4 changes: 2 additions & 2 deletions deps/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-deps-parent</artifactId>
<version>0.3.3</version>
<version>0.4.4</version>
<name>IoT SDK Dependencies</name>

<parent>
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-sdk-java</artifactId>
<version>0.3.6</version>
<version>0.4.7</version>
</parent>
<developers>
<developer>
Expand Down
2 changes: 1 addition & 1 deletion deps/serializer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<groupId>com.microsoft.azure.sdk.iot.deps</groupId>
<artifactId>iot-deps-serializer</artifactId>
<version>0.3.3</version>
<version>0.4.4</version>
<packaging>jar</packaging>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions device/iot-device-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-device-client</artifactId>
<name>IoT Hub Java Device Client</name>
<version>1.1.26</version>
<version>1.2.27</version>
<description>The Microsoft Azure IoT Device SDK for Java</description>
<developers>
<developer>
Expand All @@ -31,7 +31,7 @@
<dependency>
<groupId>com.microsoft.azure.sdk.iot.deps</groupId>
<artifactId>iot-deps-serializer</artifactId>
<version>0.3.3</version>
<version>0.4.4</version>
</dependency>
<dependency>
<groupId>org.eclipse.paho</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
public final class DeviceClient implements Closeable
{
/**
* @deprecated as of release 1.1.26 this value is deprecated and replaced by
* @deprecated as of release 1.2.27 this value is deprecated and replaced by
* {@link #setOption(String, Object)} <b>SetSendInterval</b> to change it.
*
* The number of milliseconds the transport will wait between
Expand All @@ -45,7 +45,7 @@ public final class DeviceClient implements Closeable
public static long SEND_PERIOD_MILLIS = 10L;

/**
* @deprecated as of release 1.1.26 these value is deprecated and replaced by
* @deprecated as of release 1.2.27 these value is deprecated and replaced by
* {@link #setOption(String, Object)} <b>SetMinimumPollingInterval</b> to change it.
*
* The number of milliseconds the transport will wait between
Expand All @@ -59,32 +59,32 @@ public final class DeviceClient implements Closeable
public static long RECEIVE_PERIOD_MILLIS_HTTPS = 25*60*1000; /*25 minutes*/

/**
* @deprecated as of release 1.1.26 this value is deprecated and will not be replaced.
* @deprecated as of release 1.2.27 this value is deprecated and will not be replaced.
* The hostname attribute name in a connection string.
*/
@Deprecated
public static final String HOSTNAME_ATTRIBUTE = "HostName=";
/**
* @deprecated as of release 1.1.26 this value is deprecated and will not be replaced.
* @deprecated as of release 1.2.27 this value is deprecated and will not be replaced.
* The device ID attribute name in a connection string.
*/
@Deprecated
public static final String DEVICE_ID_ATTRIBUTE = "DeviceId=";
/**
* @deprecated as of release 1.1.26 this value is deprecated and will not be replaced.
* @deprecated as of release 1.2.27 this value is deprecated and will not be replaced.
* The shared access key attribute name in a connection string.
*/
@Deprecated
public static final String SHARED_ACCESS_KEY_ATTRIBUTE = "SharedAccessKey=";
/**
* @deprecated as of release 1.1.26 this value is deprecated and will not be replaced.
* @deprecated as of release 1.2.27 this value is deprecated and will not be replaced.
* The shared access signature attribute name in a connection string.
*/
@Deprecated
public static final String SHARED_ACCESS_TOKEN_ATTRIBUTE = "SharedAccessSignature=";

/**
* @deprecated as of release 1.1.26 this value is deprecated and will not be replaced.
* @deprecated as of release 1.2.27 this value is deprecated and will not be replaced.
* The charset used for URL-encoding the device ID in the connection
* string.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public class TransportUtils
{
public static String javaDeviceClientIdentifier = "com.microsoft.azure.sdk.iot.iot-device-client/";
public static String clientVersion = "1.1.26";
public static String clientVersion = "1.2.27";

private static byte[] sleepIntervals = {1, 2, 4, 8, 16, 32, 60};
/** Generates a reconnection time with an exponential backoff
Expand Down
2 changes: 1 addition & 1 deletion device/iot-device-samples/device-method-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
<artifactId>iot-device-samples</artifactId>
<version>1.1.26</version>
<version>1.2.27</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion device/iot-device-samples/device-twin-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
<artifactId>iot-device-samples</artifactId>
<version>1.1.26</version>
<version>1.2.27</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion device/iot-device-samples/handle-messages/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
<artifactId>iot-device-samples</artifactId>
<version>1.1.26</version>
<version>1.2.27</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
4 changes: 2 additions & 2 deletions device/iot-device-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
<artifactId>iot-device-samples</artifactId>
<version>1.1.26</version>
<version>1.2.27</version>
<name>IoT Hub Java Device SDK Samples</name>
<packaging>pom</packaging>
<developers>
Expand All @@ -24,7 +24,7 @@
<dependency>
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-device-client</artifactId>
<version>1.1.26</version>
<version>1.2.27</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion device/iot-device-samples/send-event/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
<artifactId>iot-device-samples</artifactId>
<version>1.1.26</version>
<version>1.2.27</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion device/iot-device-samples/send-receive-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
<artifactId>iot-device-samples</artifactId>
<version>1.1.26</version>
<version>1.2.27</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion device/iot-device-samples/send-serialized-event/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
<artifactId>iot-device-samples</artifactId>
<version>1.1.26</version>
<version>1.2.27</version>
</parent>
<dependencies>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions device/iot-device-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-device-tests</artifactId>
<name>IoT Hub Java Device SDK tests</name>
<version>1.1.26</version>
<version>1.2.27</version>
<description>Test suite fot the Microsoft Azure IoT Device SDK for Java</description>
<developers>
<developer>
Expand All @@ -20,12 +20,12 @@
<dependency>
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-device-client</artifactId>
<version>1.1.26</version>
<version>1.2.27</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-service-client</artifactId>
<version>1.3.19</version>
<version>1.4.20</version>
<scope>test</scope>
</dependency>
<!-- test dependencies -->
Expand Down
2 changes: 1 addition & 1 deletion device/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-device-client-parent</artifactId>
<version>1.1.26</version>
<version>1.2.27</version>
<name>IoT Hub Java Device Client Parent </name>
<packaging>pom</packaging>
<developers>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-sdk-java</artifactId>
<version>0.3.6</version>
<version>0.4.7</version>
<name>Azure IoT Sdk Java</name>
<packaging>pom</packaging>
<developers>
Expand Down
4 changes: 2 additions & 2 deletions service/iot-service-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-service-client</artifactId>
<name>Iot Hub Java Service SDK</name>
<version>1.3.19</version>
<version>1.4.20</version>
<description>The Microsoft Azure IoT Service SDK for Java</description>
<developers>
<developer>
Expand All @@ -23,7 +23,7 @@
<dependency>
<groupId>com.microsoft.azure.sdk.iot.deps</groupId>
<artifactId>iot-deps-serializer</artifactId>
<version>0.3.3</version>
<version>0.4.4</version>
</dependency>
<dependency>
<groupId>org.jmockit</groupId>
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.3.19";
public static String serviceVersion = "1.4.20";

public static String getJavaServiceClientIdentifier()
{
Expand Down
6 changes: 3 additions & 3 deletions service/iot-service-samples/device-manager-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.sdk.iot.samples.service</groupId>
<artifactId>device-manager-sample</artifactId>
<version>1.3.19</version>
<version>1.4.20</version>
<name>Device Manager Sample</name>
<developers>
<developer>
Expand All @@ -13,7 +13,7 @@
<parent>
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
<artifactId>iot-service-samples</artifactId>
<version>1.3.19</version>
<version>1.4.20</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -58,7 +58,7 @@
<dependency>
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-service-client</artifactId>
<version>1.3.19</version>
<version>1.4.20</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions service/iot-service-samples/device-method-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.sdk.iot.samples.service</groupId>
<artifactId>device-method-sample</artifactId>
<version>1.3.19</version>
<version>1.4.20</version>
<name>Device Method Sample</name>
<developers>
<developer>
Expand All @@ -13,7 +13,7 @@
<parent>
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
<artifactId>iot-service-samples</artifactId>
<version>1.3.19</version>
<version>1.4.20</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -48,7 +48,7 @@
<dependency>
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-service-client</artifactId>
<version>1.3.19</version>
<version>1.4.20</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions service/iot-service-samples/device-twin-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.sdk.iot.samples.service</groupId>
<artifactId>device-twin-sample</artifactId>
<version>1.3.19</version>
<version>1.4.20</version>
<name>Device Twin Sample</name>
<developers>
<developer>
Expand All @@ -13,7 +13,7 @@
<parent>
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
<artifactId>iot-service-samples</artifactId>
<version>1.3.19</version>
<version>1.4.20</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -48,7 +48,7 @@
<dependency>
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-service-client</artifactId>
<version>1.3.19</version>
<version>1.4.20</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions service/iot-service-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
<artifactId>iot-service-samples</artifactId>
<version>1.3.19</version>
<version>1.4.20</version>
<name>IoT Hub Service SDK Samples</name>
<packaging>pom</packaging>
<developers>
Expand All @@ -22,7 +22,7 @@
<dependency>
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-service-client</artifactId>
<version>1.3.19</version>
<version>1.4.20</version>
</dependency>
</dependencies>
<build>
Expand Down
6 changes: 3 additions & 3 deletions service/iot-service-samples/service-client-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.sdk.iot.samples.service</groupId>
<artifactId>service-client-sample</artifactId>
<version>1.3.19</version>
<version>1.4.20</version>
<name>Service Client Sample</name>
<developers>
<developer>
Expand All @@ -13,7 +13,7 @@
<parent>
<groupId>com.microsoft.azure.sdk.iot.samples</groupId>
<artifactId>iot-service-samples</artifactId>
<version>1.3.19</version>
<version>1.4.20</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -48,7 +48,7 @@
<dependency>
<groupId>com.microsoft.azure.sdk.iot</groupId>
<artifactId>iot-service-client</artifactId>
<version>1.3.19</version>
<version>1.4.20</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
Loading

0 comments on commit 6fb311f

Please sign in to comment.