Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Commit

Permalink
Bump versions of ms_rest & ms_rest_azure (#1122)
Browse files Browse the repository at this point in the history
* Bump versions of ms_rest & ms_rest_azure

* Fixes
  • Loading branch information
sarangan12 authored Nov 9, 2017
1 parent 74fba79 commit 9ed5267
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 5 deletions.
3 changes: 3 additions & 0 deletions runtime/ms_rest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion runtime/ms_rest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion runtime/ms_rest/lib/ms_rest/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 5 additions & 0 deletions runtime/ms_rest_azure/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion runtime/ms_rest_azure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion runtime/ms_rest_azure/lib/ms_rest_azure/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion runtime/ms_rest_azure/ms_rest_azure.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 9ed5267

Please sign in to comment.