diff --git a/CHANGELOG b/CHANGELOG index fd5a8834e..1a3279f73 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +2020-07-02 Version: 1.36.494 +- Add GetFootwearPosition. +- Add PullTakeShoesEvent. +- Add PullTryOnShoesEvent. + 2020-07-02 Version: 1.36.493 - Add GetFootwearPosition. - Add PullTakeShoesEvent. diff --git a/VERSION b/VERSION index aa229ba88..22b5173d9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.493 \ No newline at end of file +1.36.494 \ No newline at end of file diff --git a/reid/src/ReidClient.cc b/reid/src/ReidClient.cc index dcd299456..a0d0f0814 100644 --- a/reid/src/ReidClient.cc +++ b/reid/src/ReidClient.cc @@ -31,21 +31,21 @@ ReidClient::ReidClient(const Credentials &credentials, const ClientConfiguration RpcServiceClient(SERVICE_NAME, std::make_shared(credentials), configuration) { auto locationClient = std::make_shared(credentials, configuration); - endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "1.1.7"); + endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "1.1.8"); } ReidClient::ReidClient(const std::shared_ptr& credentialsProvider, const ClientConfiguration & configuration) : RpcServiceClient(SERVICE_NAME, credentialsProvider, configuration) { auto locationClient = std::make_shared(credentialsProvider, configuration); - endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "1.1.7"); + endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "1.1.8"); } ReidClient::ReidClient(const std::string & accessKeyId, const std::string & accessKeySecret, const ClientConfiguration & configuration) : RpcServiceClient(SERVICE_NAME, std::make_shared(accessKeyId, accessKeySecret), configuration) { auto locationClient = std::make_shared(accessKeyId, accessKeySecret, configuration); - endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "1.1.7"); + endpointProvider_ = std::make_shared(locationClient, configuration.regionId(), SERVICE_NAME, "1.1.8"); } ReidClient::~ReidClient()