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

Commit 783b96f

Browse files
Update version to 1.0.0 for GA release.
1 parent 809cb00 commit 783b96f

File tree

16 files changed

+37
-33
lines changed

16 files changed

+37
-33
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 0.0.2 CACHE INTERNAL "")
7+
set(GATEWAY_VERSION 1.0.0 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("0.0.3")]
40+
[assembly: AssemblyInformationalVersion("1.0.0")]

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("0.0.3")]
40+
[assembly: AssemblyInformationalVersion("1.0.0")]

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("0.0.3")]
40+
[assembly: AssemblyInformationalVersion("1.0.0")]

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("0.0.3")]
40+
[assembly: AssemblyInformationalVersion("1.0.0")]

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("0.0.3")]
41+
[assembly: AssemblyInformationalVersion("1.0.0")]

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>0.0.3</version>
6+
<version>1.0.0</version>
77
<name>Azure IoT Gateway SDK Java Module Binding</name>
88
<developers>
99
<developer>

core/inc/gateway_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
#ifndef GATEWAY_VERSION_H
55
#define GATEWAY_VERSION_H
66

7-
#define VERSION "0.0.2"
7+
#define VERSION "1.0.0"
88

99
#endif //GATEWAY_VERSION_H

core/tests/java_loader_ut/java_loader_ut.c

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1643,15 +1643,15 @@ TEST_FUNCTION(JavaModuleLoader_ParseConfigurationFromJson_sets_missing_fields)
16431643
ASSERT_IS_NOT_NULL(result);
16441644
ASSERT_ARE_EQUAL(char_ptr, umock_c_get_expected_calls(), umock_c_get_actual_calls());
16451645
#ifdef _WIN64
1646-
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-0.0.2\\lib\\modules", options->library_path);
1647-
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-0.0.2\\lib\\bindings\\java\\classes", options->class_path);
1646+
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-1.0.0\\lib\\modules", options->library_path);
1647+
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-1.0.0\\lib\\bindings\\java\\classes", options->class_path);
16481648
#else
16491649
#ifdef WIN32
1650-
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-0.0.2\\lib\\modules", options->library_path);
1651-
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-0.0.2\\lib\\bindings\\java\\classes", options->class_path);
1650+
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-1.0.0\\lib\\modules", options->library_path);
1651+
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-1.0.0\\lib\\bindings\\java\\classes", options->class_path);
16521652
#else
1653-
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-0.0.2/modules", options->library_path);
1654-
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-0.0.2/bindings/java/classes", options->class_path);
1653+
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-1.0.0/modules", options->library_path);
1654+
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-1.0.0/bindings/java/classes", options->class_path);
16551655
#endif
16561656
#endif
16571657
ASSERT_ARE_EQUAL(int, 0, options->version);
@@ -2256,15 +2256,15 @@ TEST_FUNCTION(JavaLoader_Get_success)
22562256
ASSERT_IS_TRUE(loader->type == JAVA);
22572257
ASSERT_ARE_EQUAL(char_ptr, "java", loader->name);
22582258
#ifdef _WIN64
2259-
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-0.0.2\\lib\\modules", options->library_path);
2260-
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-0.0.2\\lib\\bindings\\java\\classes", options->class_path);
2259+
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-1.0.0\\lib\\modules", options->library_path);
2260+
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-1.0.0\\lib\\bindings\\java\\classes", options->class_path);
22612261
#else
22622262
#ifdef WIN32
2263-
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-0.0.2\\lib\\modules", options->library_path);
2264-
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-0.0.2\\lib\\bindings\\java\\classes", options->class_path);
2263+
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-1.0.0\\lib\\modules", options->library_path);
2264+
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-1.0.0\\lib\\bindings\\java\\classes", options->class_path);
22652265
#else
2266-
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-0.0.2/modules", options->library_path);
2267-
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-0.0.2/bindings/java/classes", options->class_path);
2266+
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-1.0.0/modules", options->library_path);
2267+
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-1.0.0/bindings/java/classes", options->class_path);
22682268
#endif
22692269
#endif
22702270
ASSERT_ARE_EQUAL(int, 0, options->version);

samples/java_sample/java_modules/Printer/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33

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

88
<dependencies>
99
<dependency>
1010
<groupId>com.microsoft.azure.gateway</groupId>
1111
<artifactId>gateway-java-binding</artifactId>
12-
<version>0.0.3</version>
12+
<version>1.0.0</version>
1313
</dependency>
1414
</dependencies>
1515

0 commit comments

Comments
 (0)