diff --git a/runtime/ms_rest/CHANGELOG.md b/runtime/ms_rest/CHANGELOG.md index 66f3b9b12..6351f673d 100644 --- a/runtime/ms_rest/CHANGELOG.md +++ b/runtime/ms_rest/CHANGELOG.md @@ -1,3 +1,6 @@ +##2016.11.14 ms_rest version 0.6.2 +* Missing default ca-cert for providing ssl options [#580](https://github.com/Azure/azure-sdk-for-ruby/issues/580) + ##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) diff --git a/runtime/ms_rest/README.md b/runtime/ms_rest/README.md index 2f4993974..6378834cf 100644 --- a/runtime/ms_rest/README.md +++ b/runtime/ms_rest/README.md @@ -41,14 +41,14 @@ MsRest has only unit tests which doesn't require any preparation, just run 'rspe # Contribution -To start working on the gem the only additional dev dependecy is required - rspec. After you've added a new feature and all specs pass - you're good to go with PR. But before starting any bug/feature - please make sure you've thoroughly discussed it with repository maintainers. This gem already powers a few SDKs and backward compatibility should taken in account. +To start working on the gem the only additional dev dependency is required - rspec. After you've added a new feature and all specs pass - you're good to go with PR. But before starting any bug/feature - please make sure you've thoroughly discussed it with repository maintainers. This gem already powers a few SDKs and backward compatibility should taken in account. # Adding gem to you generated SDK 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.1' +spec.add_runtime_dependency 'ms_rest', '~> 0.6.2' ``` Don't forget to correct the version. diff --git a/runtime/ms_rest/lib/ms_rest/version.rb b/runtime/ms_rest/lib/ms_rest/version.rb index 4f75f9e40..d8c652aef 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.1' + VERSION = '0.6.2' end diff --git a/runtime/ms_rest_azure/CHANGELOG.md b/runtime/ms_rest_azure/CHANGELOG.md index abb3c5d69..ea6dee940 100644 --- a/runtime/ms_rest_azure/CHANGELOG.md +++ b/runtime/ms_rest_azure/CHANGELOG.md @@ -1,3 +1,6 @@ +##2016.11.14 ms_rest_azure version 0.6.2 +* Update to ms_rest v0.6.2 due to fix for missing default ca-cert for providing ssl options [#580](https://github.com/Azure/azure-sdk-for-ruby/issues/580) + ##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) diff --git a/runtime/ms_rest_azure/README.md b/runtime/ms_rest_azure/README.md index 58b4125f1..188e343fb 100644 --- a/runtime/ms_rest_azure/README.md +++ b/runtime/ms_rest_azure/README.md @@ -37,7 +37,7 @@ 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.1' +spec.add_runtime_dependency 'ms_rest_azure', '~> 0.6.2' ``` Don't forget to correct the version. 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 100a75021..cd6607cbf 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.1' + VERSION = '0.6.2' end diff --git a/runtime/ms_rest_azure/ms_rest_azure.gemspec b/runtime/ms_rest_azure/ms_rest_azure.gemspec index 69fb79962..74798301a 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.1' + spec.add_runtime_dependency 'ms_rest', '~> 0.6.2' end