diff --git a/runtime/ms_rest/CHANGELOG.md b/runtime/ms_rest/CHANGELOG.md index 094d0639cd..c52c6bfd14 100644 --- a/runtime/ms_rest/CHANGELOG.md +++ b/runtime/ms_rest/CHANGELOG.md @@ -1,3 +1,6 @@ +##2017.11.10 ms_rest version 0.7.2 +* [Enhancement] Added code to check & validate the constraints on the model. Refer [PR #1119](https://github.com/Azure/azure-sdk-for-ruby/pull/1119/files) for more details. + ##2017.07.27 ms_rest version 0.7.1 * [Bug Fix] Modified to_json logic in JSONable module to handle 'mapper' & 'object' options.[PR #860](https://github.com/Azure/azure-sdk-for-ruby/pull/860) diff --git a/runtime/ms_rest/README.md b/runtime/ms_rest/README.md index 670fa36f95..57589bd75e 100644 --- a/runtime/ms_rest/README.md +++ b/runtime/ms_rest/README.md @@ -48,7 +48,7 @@ To start working on the gem the only additional dev dependency is required - rsp Reference it in the gemfile and also add this line to your client's gemspec file: ```ruby -spec.add_runtime_dependency 'ms_rest', '~> 0.7.0' +spec.add_runtime_dependency 'ms_rest', '~> 0.7.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 2513d9fdea..ceeab54af8 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.7.1' + VERSION = '0.7.2' end diff --git a/runtime/ms_rest_azure/CHANGELOG.md b/runtime/ms_rest_azure/CHANGELOG.md index 0ad4ba2f2b..651fbfdbf2 100644 --- a/runtime/ms_rest_azure/CHANGELOG.md +++ b/runtime/ms_rest_azure/CHANGELOG.md @@ -1,3 +1,8 @@ +##2017.11.10 ms_rest_azure version 0.10.0 +* Modified portal URLs for Azure cloud environments. Refer [PR #1106](https://github.com/Azure/azure-sdk-for-ruby/pull/1106) for further details. +* [Breaking Change] Removed Resource and SubResource classes. Refer [PR #1106](https://github.com/Azure/azure-sdk-for-ruby/pull/1106) for further details. +* Added Configurable and Default classes to be used by the profile gems. Refer [PR #1111](https://github.com/Azure/azure-sdk-for-ruby/pull/1111) for further details. + ##2017.09.11 ms_rest_azure version 0.9.0 * [Breaking Change] Managed Service Identity authentication to acquire token does not require `tenant_id`.[Issue #930](https://github.com/Azure/azure-sdk-for-ruby/issues/930) [PR #931](https://github.com/Azure/azure-sdk-for-ruby/pull/931) diff --git a/runtime/ms_rest_azure/README.md b/runtime/ms_rest_azure/README.md index 820de23bfb..3dcf404350 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.9.0' +spec.add_runtime_dependency 'ms_rest_azure', '~> 0.10.0' ``` 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 c137b6be4e..e58278bf0e 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.9.0' + VERSION = '0.10.0' end diff --git a/runtime/ms_rest_azure/ms_rest_azure.gemspec b/runtime/ms_rest_azure/ms_rest_azure.gemspec index 058cb3942a..17a5acc490 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.7.0' + spec.add_runtime_dependency 'ms_rest', '~> 0.7.2' end