Skip to content
This repository was archived by the owner on Oct 12, 2023. It is now read-only.

Commit 24bd75d

Browse files
committed
Merge pull request #150 from damonbarry/release
2 parents dd79d44 + 55249dd commit 24bd75d

File tree

30 files changed

+2571
-61
lines changed

30 files changed

+2571
-61
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
cmake_minimum_required(VERSION 2.8.12)
55
project(azure_iot_gateway_sdk)
66

7-
set(GATEWAY_VERSION 1.0.1 CACHE INTERNAL "")
7+
set(GATEWAY_VERSION 1.0.2 CACHE INTERNAL "")
88
set(COMPANY_NAME "Microsoft")
99
SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
1010

bindings/dotnet/dotnet-binding/E2ETestModule/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@
3737

3838
// Version information for an assembly follows semantic versioning 1.0.0 (because
3939
// NuGet didn't support semver 2.0.0 before VS 2015). See semver.org for details.
40-
[assembly: AssemblyInformationalVersion("1.0.0")]
40+
[assembly: AssemblyInformationalVersion("1.0.1")]

bindings/dotnet/dotnet-binding/Microsoft.Azure.IoT.Gateway.Test/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@
3737

3838
// Version information for an assembly follows semantic versioning 1.0.0 (because
3939
// NuGet didn't support semver 2.0.0 before VS 2015). See semver.org for details.
40-
[assembly: AssemblyInformationalVersion("1.0.0")]
40+
[assembly: AssemblyInformationalVersion("1.0.1")]

bindings/dotnet/dotnet-binding/Microsoft.Azure.IoT.Gateway/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@
3737

3838
// Version information for an assembly follows semantic versioning 1.0.0 (because
3939
// NuGet didn't support semver 2.0.0 before VS 2015). See semver.org for details.
40-
[assembly: AssemblyInformationalVersion("1.0.0")]
40+
[assembly: AssemblyInformationalVersion("1.0.1")]

bindings/dotnet/dotnet-binding/PrinterModule/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@
3737

3838
// Version information for an assembly follows semantic versioning 1.0.0 (because
3939
// NuGet didn't support semver 2.0.0 before VS 2015). See semver.org for details.
40-
[assembly: AssemblyInformationalVersion("1.0.0")]
40+
[assembly: AssemblyInformationalVersion("1.0.1")]

bindings/dotnet/dotnet-binding/SensorModule/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838

3939
// Version information for an assembly follows semantic versioning 1.0.0 (because
4040
// NuGet didn't support semver 2.0.0 before VS 2015). See semver.org for details.
41-
[assembly: AssemblyInformationalVersion("1.0.0")]
41+
[assembly: AssemblyInformationalVersion("1.0.1")]
Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
{
2-
"version": "1.0.0-*",
3-
1+
{
2+
"version": "1.0.0",
43
"dependencies": {
54
"NETStandard.Library": "1.6.0"
65
},
7-
86
"frameworks": {
97
"netstandard1.6": {
108
"imports": "dnxcore50"
119
}
1210
}
13-
}
11+
}

bindings/java/gateway-java-binding/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>com.microsoft.azure.gateway</groupId>
55
<artifactId>gateway-java-binding</artifactId>
6-
<version>1.0.0</version>
6+
<version>1.0.1</version>
77
<name>Azure IoT Gateway SDK Java Module Binding</name>
88
<developers>
99
<developer>

samples/java_sample/java_modules/Printer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>com.microsoft.azure.gateway</groupId>
55
<artifactId>sample-printer-module</artifactId>
6-
<version>1.0.0</version>
6+
<version>1.0.1</version>
77

88
<dependencies>
99
<dependency>

samples/java_sample/java_modules/Sensor/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>com.microsoft.azure.gateway</groupId>
55
<artifactId>sample-sensor-module</artifactId>
6-
<version>1.0.0</version>
6+
<version>1.0.1</version>
77

88
<dependencies>
99
<dependency>

0 commit comments

Comments
 (0)