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

Commit

Permalink
Update version to 1.0.0 for GA release.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-buckley committed Nov 19, 2016
1 parent 809cb00 commit 783b96f
Show file tree
Hide file tree
Showing 16 changed files with 37 additions and 33 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
cmake_minimum_required(VERSION 2.8.12)
project(azure_iot_gateway_sdk)

set(GATEWAY_VERSION 0.0.2 CACHE INTERNAL "")
set(GATEWAY_VERSION 1.0.0 CACHE INTERNAL "")
set(COMPANY_NAME "Microsoft")
SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,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("0.0.3")]
[assembly: AssemblyInformationalVersion("1.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,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("0.0.3")]
[assembly: AssemblyInformationalVersion("1.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,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("0.0.3")]
[assembly: AssemblyInformationalVersion("1.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,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("0.0.3")]
[assembly: AssemblyInformationalVersion("1.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,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("0.0.3")]
[assembly: AssemblyInformationalVersion("1.0.0")]
2 changes: 1 addition & 1 deletion bindings/java/gateway-java-binding/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.microsoft.azure.gateway</groupId>
<artifactId>gateway-java-binding</artifactId>
<version>0.0.3</version>
<version>1.0.0</version>
<name>Azure IoT Gateway SDK Java Module Binding</name>
<developers>
<developer>
Expand Down
2 changes: 1 addition & 1 deletion core/inc/gateway_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
#ifndef GATEWAY_VERSION_H
#define GATEWAY_VERSION_H

#define VERSION "0.0.2"
#define VERSION "1.0.0"

#endif //GATEWAY_VERSION_H
24 changes: 12 additions & 12 deletions core/tests/java_loader_ut/java_loader_ut.c
Original file line number Diff line number Diff line change
Expand Up @@ -1643,15 +1643,15 @@ TEST_FUNCTION(JavaModuleLoader_ParseConfigurationFromJson_sets_missing_fields)
ASSERT_IS_NOT_NULL(result);
ASSERT_ARE_EQUAL(char_ptr, umock_c_get_expected_calls(), umock_c_get_actual_calls());
#ifdef _WIN64
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-0.0.2\\lib\\modules", options->library_path);
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-0.0.2\\lib\\bindings\\java\\classes", options->class_path);
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-1.0.0\\lib\\modules", options->library_path);
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-1.0.0\\lib\\bindings\\java\\classes", options->class_path);
#else
#ifdef WIN32
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-0.0.2\\lib\\modules", options->library_path);
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-0.0.2\\lib\\bindings\\java\\classes", options->class_path);
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-1.0.0\\lib\\modules", options->library_path);
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-1.0.0\\lib\\bindings\\java\\classes", options->class_path);
#else
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-0.0.2/modules", options->library_path);
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-0.0.2/bindings/java/classes", options->class_path);
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-1.0.0/modules", options->library_path);
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-1.0.0/bindings/java/classes", options->class_path);
#endif
#endif
ASSERT_ARE_EQUAL(int, 0, options->version);
Expand Down Expand Up @@ -2256,15 +2256,15 @@ TEST_FUNCTION(JavaLoader_Get_success)
ASSERT_IS_TRUE(loader->type == JAVA);
ASSERT_ARE_EQUAL(char_ptr, "java", loader->name);
#ifdef _WIN64
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-0.0.2\\lib\\modules", options->library_path);
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-0.0.2\\lib\\bindings\\java\\classes", options->class_path);
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-1.0.0\\lib\\modules", options->library_path);
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files\\azure_iot_gateway_sdk-1.0.0\\lib\\bindings\\java\\classes", options->class_path);
#else
#ifdef WIN32
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-0.0.2\\lib\\modules", options->library_path);
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-0.0.2\\lib\\bindings\\java\\classes", options->class_path);
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-1.0.0\\lib\\modules", options->library_path);
ASSERT_ARE_EQUAL(char_ptr, "C:\\Program Files (x86)\\azure_iot_gateway_sdk-1.0.0\\lib\\bindings\\java\\classes", options->class_path);
#else
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-0.0.2/modules", options->library_path);
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-0.0.2/bindings/java/classes", options->class_path);
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-1.0.0/modules", options->library_path);
ASSERT_ARE_EQUAL(char_ptr, "/usr/local/lib/azure_iot_gateway_sdk-1.0.0/bindings/java/classes", options->class_path);
#endif
#endif
ASSERT_ARE_EQUAL(int, 0, options->version);
Expand Down
4 changes: 2 additions & 2 deletions samples/java_sample/java_modules/Printer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

<groupId>com.microsoft.azure.gateway</groupId>
<artifactId>sample-printer-module</artifactId>
<version>0.0.3</version>
<version>1.0.0</version>

<dependencies>
<dependency>
<groupId>com.microsoft.azure.gateway</groupId>
<artifactId>gateway-java-binding</artifactId>
<version>0.0.3</version>
<version>1.0.0</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions samples/java_sample/java_modules/Sensor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

<groupId>com.microsoft.azure.gateway</groupId>
<artifactId>sample-sensor-module</artifactId>
<version>0.0.3</version>
<version>1.0.0</version>

<dependencies>
<dependency>
<groupId>com.microsoft.azure.gateway</groupId>
<artifactId>gateway-java-binding</artifactId>
<version>0.0.3</version>
<version>1.0.0</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions samples/java_sample/src/java_sample_lin.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"name": "java",
"entrypoint": {
"class.name": "Printer",
"class.path": "../../../samples/java_sample/java_modules/Printer/target/sample-printer-module-0.0.3-with-deps.jar"
"class.path": "../../../samples/java_sample/java_modules/Printer/target/sample-printer-module-1.0.0-with-deps.jar"
}
},
"args": null
Expand All @@ -29,7 +29,7 @@
"name": "java",
"entrypoint": {
"class.name": "Sensor",
"class.path": "../../../samples/java_sample/java_modules/Sensor/target/sample-sensor-module-0.0.3-with-deps.jar"
"class.path": "../../../samples/java_sample/java_modules/Sensor/target/sample-sensor-module-1.0.0-with-deps.jar"
}
},
"args": null
Expand Down
4 changes: 2 additions & 2 deletions samples/java_sample/src/java_sample_win.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"name": "java",
"entrypoint": {
"class.name": "Printer",
"class.path": "..\\..\\..\\samples\\java_sample\\java_modules\\Printer\\target\\sample-printer-module-0.0.3-with-deps.jar"
"class.path": "..\\..\\..\\samples\\java_sample\\java_modules\\Printer\\target\\sample-printer-module-1.0.0-with-deps.jar"
}
},
"args": null
Expand All @@ -29,7 +29,7 @@
"name": "java",
"entrypoint": {
"class.name": "Sensor",
"class.path": "..\\..\\..\\samples\\java_sample\\java_modules\\Sensor\\target\\sample-sensor-module-0.0.3-with-deps.jar"
"class.path": "..\\..\\..\\samples\\java_sample\\java_modules\\Sensor\\target\\sample-sensor-module-1.0.0-with-deps.jar"
}
},
"args": null
Expand Down
6 changes: 5 additions & 1 deletion tools/docs/c/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Microsoft Azure IoT Gateway SDK"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.0.0-beta.5
PROJECT_NUMBER = 1.0.0

# 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 Expand Up @@ -854,6 +854,10 @@ EXCLUDE_SYMBOLS = *_VALUES \
GATEWAY_ADD_LINK_RESULT_FromString \
GATEWAY_START_RESULTStrings \
GATEWAY_START_RESULT_FromString \
MODULE_LOADER_TYPEStrings \
MODULE_LOADER_TYPE_FromString \
MODULE_LOADER_RESULTStrings \
MODULE_LOADER_RESULT_FromString \
MODULE_EXPORT


Expand Down
2 changes: 1 addition & 1 deletion tools/docs/dotnet/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Microsoft Azure IoT Gateway SDK - .NET Binding"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.0.3
PROJECT_NUMBER = 1.0.0

# 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
6 changes: 3 additions & 3 deletions tools/release/bump_version/versions.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"gateway":
{
"core" : "1.0.0-beta.5"
"core" : "1.0.0"
},
"bindings" :
{
"dotnet" : "0.0.3",
"java" : "0.0.3"
"dotnet" : "1.0.0",
"java" : "1.0.0"
}
}

0 comments on commit 783b96f

Please sign in to comment.