From f41eefbbd68518016bd67ec5c7d4fa6938932de1 Mon Sep 17 00:00:00 2001 From: Vishrut Shah Date: Fri, 11 Nov 2016 17:03:07 -0800 Subject: [PATCH] Preparing for release of 0.6.1 of ms_rest & ms_rest_azure (#554) * Preparing for release of 0.6.1 of ms_rest & ms_rest_azure * Updating README to use ~>0.6.1 --- runtime/ms_rest/CHANGELOG.md | 4 ++++ runtime/ms_rest/README.md | 13 +++++++++++-- runtime/ms_rest/lib/ms_rest/version.rb | 2 +- runtime/ms_rest_azure/CHANGELOG.md | 4 ++++ runtime/ms_rest_azure/README.md | 13 +++++++++++-- runtime/ms_rest_azure/lib/ms_rest_azure/version.rb | 2 +- runtime/ms_rest_azure/ms_rest_azure.gemspec | 2 +- 7 files changed, 33 insertions(+), 7 deletions(-) diff --git a/runtime/ms_rest/CHANGELOG.md b/runtime/ms_rest/CHANGELOG.md index 9bc81bb9d..66f3b9b12 100644 --- a/runtime/ms_rest/CHANGELOG.md +++ b/runtime/ms_rest/CHANGELOG.md @@ -1,3 +1,7 @@ +##2016.11.11 ms_rest version 0.6.1 +* Adding telemetry extension point into ServiceClient [#543](https://github.com/Azure/azure-sdk-for-ruby/pull/543) +* Removing explicit json dependency [#523](https://github.com/Azure/azure-sdk-for-ruby/pull/523) + ##2016.10.05 ms_rest version 0.6.0 * Minimum supported Ruby version is 2.0.0 [#1463](https://github.com/Azure/autorest/pull/1463) * Implemented generic request method for ServiceClient [#1447](https://github.com/Azure/autorest/pull/1447) diff --git a/runtime/ms_rest/README.md b/runtime/ms_rest/README.md index 2dbaecb59..2f4993974 100644 --- a/runtime/ms_rest/README.md +++ b/runtime/ms_rest/README.md @@ -48,10 +48,19 @@ To start working on the gem the only additional dev dependecy is required - rspe Reference it in the gemfile and also add this line to your client's gemspec file: ```ruby -spec.add_runtime_dependency 'ms_rest', '~> 0.6.0' +spec.add_runtime_dependency 'ms_rest', '~> 0.6.1' +``` +Don't forget to correct the version. + +# Utilizing Telemetry Extension in your SDK + +We encourage the customer of ms_rest library to provide information about their product sent via telemetry extension point as below: + +```ruby +additional_user_agent_information = 'fog-azure-rm/0.2.0' # Refer https://github.com/Azure/azure-sdk-for-ruby/issues/517 for more info. +service_client.add_user_agent_information(additional_user_agent_information) ``` -Don't forget to correct the version. # Provide feedback diff --git a/runtime/ms_rest/lib/ms_rest/version.rb b/runtime/ms_rest/lib/ms_rest/version.rb index 5f8f8ca43..4f75f9e40 100644 --- a/runtime/ms_rest/lib/ms_rest/version.rb +++ b/runtime/ms_rest/lib/ms_rest/version.rb @@ -3,5 +3,5 @@ # Licensed under the MIT License. See License.txt in the project root for license information. module MsRest - VERSION = '0.6.0' + VERSION = '0.6.1' end diff --git a/runtime/ms_rest_azure/CHANGELOG.md b/runtime/ms_rest_azure/CHANGELOG.md index cef164f7d..abb3c5d69 100644 --- a/runtime/ms_rest_azure/CHANGELOG.md +++ b/runtime/ms_rest_azure/CHANGELOG.md @@ -1,3 +1,7 @@ +##2016.11.11 ms_rest_azure version 0.6.1 +* Adding telemetry extension point into AzureServiceClient [#543](https://github.com/Azure/azure-sdk-for-ruby/pull/543) +* Removing explicit json dependency [#523](https://github.com/Azure/azure-sdk-for-ruby/pull/523) + ##2016.10.05 ms_rest_azure version 0.6.0 * Minimum supported Ruby version is 2.0.0 [#1463](https://github.com/Azure/autorest/pull/1463) * Implemented generic request method for AzureServiceClient [#1447](https://github.com/Azure/autorest/pull/1447) diff --git a/runtime/ms_rest_azure/README.md b/runtime/ms_rest_azure/README.md index a3cc7b754..58b4125f1 100644 --- a/runtime/ms_rest_azure/README.md +++ b/runtime/ms_rest_azure/README.md @@ -37,10 +37,19 @@ To start working on the gem the only additional dev dependecy is required - rspe Reference it in the gemfile and also add this line to your client's gemspec file: ```ruby -spec.add_runtime_dependency 'ms_rest_azure', '~> 0.6.0' +spec.add_runtime_dependency 'ms_rest_azure', '~> 0.6.1' +``` +Don't forget to correct the version. + +# Utilizing Telemetry Extension in your SDK + +We encourage the customer of ms_rest_azure library to provide information about their product sent via telemetry extension point as below: + +```ruby +additional_user_agent_information = 'fog-azure-rm/0.2.0' # Refer https://github.com/Azure/azure-sdk-for-ruby/issues/517 for more info. +azure_service_client.add_user_agent_information(additional_user_agent_information) ``` -Don't forget to correct the version. # Provide feedback diff --git a/runtime/ms_rest_azure/lib/ms_rest_azure/version.rb b/runtime/ms_rest_azure/lib/ms_rest_azure/version.rb index 632a4bd7f..100a75021 100644 --- a/runtime/ms_rest_azure/lib/ms_rest_azure/version.rb +++ b/runtime/ms_rest_azure/lib/ms_rest_azure/version.rb @@ -3,5 +3,5 @@ # Licensed under the MIT License. See License.txt in the project root for license information. module MsRestAzure - VERSION = '0.6.0' + VERSION = '0.6.1' end diff --git a/runtime/ms_rest_azure/ms_rest_azure.gemspec b/runtime/ms_rest_azure/ms_rest_azure.gemspec index 9db89e84e..69fb79962 100644 --- a/runtime/ms_rest_azure/ms_rest_azure.gemspec +++ b/runtime/ms_rest_azure/ms_rest_azure.gemspec @@ -31,5 +31,5 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency 'concurrent-ruby', '~> 1.0' spec.add_runtime_dependency 'faraday', '~> 0.9' spec.add_runtime_dependency 'faraday-cookie_jar', '~> 0.0.6' - spec.add_runtime_dependency 'ms_rest', '~> 0.6.0' + spec.add_runtime_dependency 'ms_rest', '~> 0.6.1' end