Skip to content

Commit

Permalink
Bump version to 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre Cauchois committed Aug 8, 2018
1 parent 94d9de1 commit 0a549f2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions device/iothub_client_python/src/iothub_client_python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
#define IMPORT_NAME iothub_client
#endif

#define VERSION_STRING "1.4.1"
#define VERSION_STRING "1.4.2"

#if PY_MAJOR_VERSION >= 3
#define IS_PY3
Expand Down Expand Up @@ -2149,7 +2149,7 @@ iotHubInvokeModuleOrDeviceMethodCallback(IOTHUB_CLIENT_RESULT result, int respon
boost::python::object userContext = invokeContext->userContext;

IoTHubMethodResponse methodResponse = IoTHubMethodResponse(result, responseStatus, responsePayload, responsePayloadSize);

{
ScopedGILAcquire acquire;
try {
Expand Down Expand Up @@ -2315,7 +2315,7 @@ class IoTHubModuleClient : public IoTHubClient<IOTHUB_MODULE_CLIENT_HANDLE>
boost::python::throw_error_already_set();
return;
}

InvokeModuleOrDeviceMethodContext *invokeContext = new InvokeModuleOrDeviceMethodContext(userCallback, userContext);
IOTHUB_CLIENT_RESULT result;

Expand Down Expand Up @@ -2346,7 +2346,7 @@ class IoTHubModuleClient : public IoTHubClient<IOTHUB_MODULE_CLIENT_HANDLE>
boost::python::throw_error_already_set();
return;
}

InvokeModuleOrDeviceMethodContext *invokeContext = new InvokeModuleOrDeviceMethodContext(userCallback, userContext);
IOTHUB_CLIENT_RESULT result;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#define IMPORT_NAME provisioning_device_client
#endif

#define VERSION_STRING "1.4.1"
#define VERSION_STRING "1.4.2"

#if PY_MAJOR_VERSION >= 3
#define IS_PY3
Expand Down
2 changes: 1 addition & 1 deletion service/src/iothub_service_client_python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#define IMPORT_NAME iothub_service_client
#endif

#define VERSION_STRING "1.4.1"
#define VERSION_STRING "1.4.2"

#if PY_MAJOR_VERSION >= 3
#define IS_PY3
Expand Down

0 comments on commit 0a549f2

Please sign in to comment.