Skip to content

Commit

Permalink
Bumped versions for release 2016-03-11
Browse files Browse the repository at this point in the history
  • Loading branch information
ewertons committed Mar 11, 2016
1 parent 1daf40a commit 43154f9
Show file tree
Hide file tree
Showing 37 changed files with 99 additions and 100 deletions.
2 changes: 1 addition & 1 deletion build/docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Microsoft Azure IoT Device SDK for C"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.0.1
PROJECT_NUMBER = 1.0.2

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
36 changes: 18 additions & 18 deletions build/release/bump_version/versions.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
{
"c": {
"device": "1.0.1"
"device": "1.0.2"
},
"c_nuget": {
"device": "1.0.1"
"device": "1.0.2"
},
"csharp": {
"device": "1.0.2",
"device": "1.0.3",
"service": "1.0.1"
},
"java": {
"device": "1.0.1",
"service": "1.0.1"
"device": "1.0.2",
"service": "1.0.2"
},
"node": {
"common": "1.0.1",
"amqp-base": "1.0.1",
"http-base": "1.0.1",
"mqtt-base": "1.0.1",
"device": "1.0.1",
"device-amqp": "1.0.1",
"device-amqp-ws": "1.0.1",
"device-http": "1.0.1",
"device-mqtt": "1.0.1",
"service": "1.0.1"
"common": "1.0.2",
"amqp-base": "1.0.2",
"http-base": "1.0.2",
"mqtt-base": "1.0.2",
"device": "1.0.2",
"device-amqp": "1.0.2",
"device-amqp-ws": "1.0.2",
"device-http": "1.0.2",
"device-mqtt": "1.0.2",
"service": "1.0.2"
},
"iothub-explorer": "1.0.0",
"device-explorer": "1.0.0",
"github-release": "v1.0.1"
"iothub-explorer": "1.0.1",
"device-explorer": "1.0.1",
"github-release": "v1.0.2"
}
2 changes: 1 addition & 1 deletion build/release/release_mbed_project.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ echo Pushing changes to repo '%project_name%'...
hg addremove
if %errorlevel% neq 0 goto :eof

hg commit -u "%MBED_HG_USER%" -m "1.0.1"
hg commit -u "%MBED_HG_USER%" -m "1.0.2"

hg push --insecure https://%MBED_USER%:%MBED_PWD%@developer.mbed.org/users/%MBED_USER%/code/%project_name%/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?><package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Microsoft.Azure.IoTHub.IoTHubClient</id>
<version>1.0.1</version>
<version>1.0.2</version>
<title>Microsoft Azure IoTHub IoTHubClient</title>
<authors>Microsoft Corp</authors>
<owners>Azure-IoT</owners>
Expand Down
2 changes: 1 addition & 1 deletion c/iothub_client/inc/iothub_client_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#ifndef IOTHUB_CLIENT_VERSION_H
#define IOTHUB_CLIENT_VERSION_H

#define IOTHUB_SDK_VERSION "1.0.1"
#define IOTHUB_SDK_VERSION "1.0.2"

#ifdef __cplusplus
extern "C"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ BEGIN_TEST_SUITE(version_unittests)

TEST_FUNCTION(the_version_constant_has_the_expected_value)
{
ASSERT_ARE_EQUAL(char_ptr, "1.0.1", IOTHUB_SDK_VERSION);
ASSERT_ARE_EQUAL(char_ptr, "1.0.2", IOTHUB_SDK_VERSION);
}

/*Tests_SRS_IOTHUBCLIENT_05_001: [IoTHubClient_GetVersionString shall return a pointer to a constant string which indicates the version of IoTHubClient API.]*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@

// Version information for an assembly follows semantic versioning 1.0.0 (because
// NuGet didn't support semver 2.0.0 before VS 2015). See semver.org for details.
[assembly: AssemblyInformationalVersion("1.0.2")]
[assembly: AssemblyInformationalVersion("1.0.3")]
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@

// Version information for an assembly follows semantic versioning 1.0.0 (because
// NuGet didn't support semver 2.0.0 before VS 2015). See semver.org for details.
[assembly: AssemblyInformationalVersion("1.0.2")]
[assembly: AssemblyInformationalVersion("1.0.3")]
5 changes: 2 additions & 3 deletions java/device/iothub-java-client/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<!-- Copyright (c) Microsoft. All rights reserved. --><!-- Licensed under the MIT license. See LICENSE file in the project root for full license information. -->
<project>
<!-- Copyright (c) Microsoft. All rights reserved. --><!-- Licensed under the MIT license. See LICENSE file in the project root for full license information. --><project>
<modelVersion>4.0.0</modelVersion>
<artifactId>iothub-java-client</artifactId>
<name>IoT Hub Java Client</name>
Expand All @@ -13,7 +12,7 @@
<parent>
<groupId>com.microsoft.azure.iothub-java-client</groupId>
<artifactId>iothub-java-client-with-samples</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
public class TransportUtils
{
public static String javaDeviceClientIdentifier = "com.microsoft.azure.iothub-java-client/";
public static String clientVersion = "1.0.1";
public static String clientVersion = "1.0.2";
}
2 changes: 1 addition & 1 deletion java/device/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.iothub-java-client</groupId>
<artifactId>iothub-java-client-with-samples</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<name>IoT Hub Java Client With Samples</name>
<packaging>pom</packaging>
<developers>
Expand Down
2 changes: 1 addition & 1 deletion java/device/samples/handle-messages/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.microsoft.azure.iothub-java-client</groupId>
<artifactId>samples</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
4 changes: 2 additions & 2 deletions java/device/samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.microsoft.azure.iothub-java-client</groupId>
<artifactId>iothub-java-client-with-samples</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</parent>
<modules>
<module>send-event</module>
Expand All @@ -24,7 +24,7 @@
<dependency>
<groupId>com.microsoft.azure.iothub-java-client</groupId>
<artifactId>iothub-java-client</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion java/device/samples/send-event/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.microsoft.azure.iothub-java-client</groupId>
<artifactId>samples</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion java/device/samples/send-receive-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.microsoft.azure.iothub-java-client</groupId>
<artifactId>samples</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion java/device/samples/send-serialized-event/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.microsoft.azure.iothub-java-client</groupId>
<artifactId>samples</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</parent>
<dependencies>
<dependency>
Expand Down
5 changes: 2 additions & 3 deletions java/service/iothub-service-sdk/pom.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<!-- Copyright (c) Microsoft. All rights reserved. --><!-- Licensed under the MIT license. See LICENSE file in the project root for full license information. -->
<project>
<!-- Copyright (c) Microsoft. All rights reserved. --><!-- Licensed under the MIT license. See LICENSE file in the project root for full license information. --><project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure.iothub.service.sdk</groupId>
<artifactId>iothub-service-sdk</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<name>IotHub Java Service SDK</name>
<description>The Microsoft Azure IoT Service SDK for Java</description>
<developers>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ public class TransportUtils
/** Version identifier key */
public static final String versionIdentifierKey = "com.microsoft:client-version";
public static String javaServiceClientIdentifier = "com.microsoft.azure.iothub.service.sdk/";
public static String serviceVersion = "1.0.1";
public static String serviceVersion = "1.0.2";
}
2 changes: 1 addition & 1 deletion java/service/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.iothub.service.sdk</groupId>
<artifactId>iothub-service-sdk-with-samples</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<name>IoT Hub Java Service SDK With Samples</name>
<packaging>pom</packaging>
<developers>
Expand Down
4 changes: 2 additions & 2 deletions java/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.iothub.service.sdk</groupId>
<artifactId>DeviceManagerSample</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<name>Device Manager Sample</name>
<developers>
<developer>
Expand Down Expand Up @@ -44,7 +44,7 @@
<dependency>
<groupId>com.microsoft.azure.iothub.service.sdk</groupId>
<artifactId>iothub-service-sdk</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions java/service/samples/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.iothub.service.sdk</groupId>
<artifactId>samples</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<name>IoT Hub Service SDK Samples</name>
<packaging>pom</packaging>
<developers>
Expand All @@ -19,7 +19,7 @@
<dependency>
<groupId>com.microsoft.azure.iothub.service.sdk</groupId>
<artifactId>iothub-service-sdk</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>
</dependencies>
<build>
Expand Down
4 changes: 2 additions & 2 deletions java/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.iothub.service.sdk</groupId>
<artifactId>ServiceClientSample</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<name>Service Client Sample</name>
<developers>
<developer>
Expand Down Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>com.microsoft.azure.iothub.service.sdk</groupId>
<artifactId>iothub-service-sdk</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions node/common/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "azure-iot-common",
"version": "1.0.1",
"version": "1.0.2",
"description": "Common components shared by Azure IoT device and service SDKs",
"author": "Microsoft Corporation",
"license": "MIT",
Expand All @@ -22,7 +22,7 @@
"alltest": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter spec test/_*_test*.js",
"ci": "npm -s run lint && npm -s run alltest-min && npm -s run check-cover",
"test": "npm -s run lint && npm -s run unittest",
"check-cover": "istanbul check-coverage --statements 90 --branches 100 --functions 80 --lines 89"
"check-cover": "istanbul check-coverage --statements 90 --branches 100 --functions 80 --lines 89"
},
"engines": {
"node": "0.10.x || 0.12.x || 4.x.x || 5.x.x"
Expand Down
6 changes: 3 additions & 3 deletions node/common/transport/amqp/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "azure-iot-amqp-base",
"version": "1.0.1",
"version": "1.0.2",
"description": "AMQP operations used by Azure IoT device and service SDKs",
"author": "Microsoft Corporation",
"license": "MIT",
"dependencies": {
"amqp10": "^2.2.1",
"amqp10-transport-ws": "^0.0.2",
"azure-iot-common": "1.0.1",
"azure-iot-common": "1.0.2",
"debug": "^2.2.0"
},
"devDependencies": {
Expand All @@ -24,7 +24,7 @@
"alltest": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter spec test/_*_test*.js",
"ci": "npm -s run lint && npm -s run alltest-min && npm -s run check-cover",
"test": "npm -s run lint && npm -s run unittest",
"check-cover": "istanbul check-coverage --statements 91 --branches 69 --functions 84 --lines 90"
"check-cover": "istanbul check-coverage --statements 91 --branches 69 --functions 84 --lines 90"
},
"engines": {
"node": "0.10.x || 0.12.x || 4.x.x || 5.x.x"
Expand Down
4 changes: 2 additions & 2 deletions node/common/transport/http/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "azure-iot-http-base",
"version": "1.0.1",
"version": "1.0.2",
"description": "HTTP operations used by Azure IoT device and service SDKs",
"author": "Microsoft Corporation",
"license": "MIT",
"dependencies": {
"azure-iot-common": "1.0.1"
"azure-iot-common": "1.0.2"
},
"devDependencies": {
"chai": "^3.3.0",
Expand Down
6 changes: 3 additions & 3 deletions node/common/transport/mqtt/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "azure-iot-mqtt-base",
"version": "1.0.1",
"version": "1.0.2",
"description": "MQTT operations used by Azure IoT device and service SDKs",
"author": "Microsoft Corporation",
"license": "MIT",
"dependencies": {
"azure-iot-common": "1.0.1",
"azure-iot-common": "1.0.2",
"debug": "^2.2.0",
"mqtt": "^1.5.0"
},
Expand All @@ -24,7 +24,7 @@
"alltest": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter spec test/_*_test*.js",
"ci": "npm -s run lint && npm -s run alltest-min && npm -s run check-cover",
"test": "npm -s run lint && npm -s run unittest",
"check-cover": "istanbul check-coverage --statements 89 --branches 86 --functions 68 --lines 89"
"check-cover": "istanbul check-coverage --statements 89 --branches 86 --functions 68 --lines 89"
},
"engines": {
"node": "0.10.x || 0.12.x || 4.x.x || 5.x.x"
Expand Down
6 changes: 3 additions & 3 deletions node/device/core/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "azure-iot-device",
"version": "1.0.1",
"version": "1.0.2",
"description": "Azure IoT device SDK",
"author": "Microsoft Corporation",
"license": "MIT",
"main": "device.js",
"dependencies": {
"azure-iot-common": "1.0.1",
"azure-iot-common": "1.0.2",
"debug": "^2.2.0"
},
"devDependencies": {
Expand All @@ -24,7 +24,7 @@
"alltest": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter spec test/_*_test*.js",
"ci": "npm -s run lint && npm -s run alltest-min && npm -s run check-cover",
"test": "npm -s run lint && npm -s run unittest",
"check-cover": "istanbul check-coverage --statements 90 --branches 70 --functions 90 --lines 90"
"check-cover": "istanbul check-coverage --statements 90 --branches 70 --functions 90 --lines 90"
},
"engines": {
"node": "0.10.x || 0.12.x || 4.x.x || 5.x.x"
Expand Down
8 changes: 4 additions & 4 deletions node/device/samples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"author": "Microsoft Corp.",
"license": "MIT",
"dependencies": {
"azure-iot-device": "1.0.1",
"azure-iot-device-amqp": "1.0.1",
"azure-iot-device-http": "1.0.1",
"azure-iot-device-mqtt": "1.0.1"
"azure-iot-device": "1.0.2",
"azure-iot-device-amqp": "1.0.2",
"azure-iot-device-http": "1.0.2",
"azure-iot-device-mqtt": "1.0.2"
},
"devDependencies": {
"jshint": "^2.8.0"
Expand Down
Loading

0 comments on commit 43154f9

Please sign in to comment.