Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ruby - Update ms_rest & ms_rest_azure version to 0.3.0 #1260

Merged
merged 1 commit into from
Jul 14, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/client/Ruby/ms-rest-azure/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
##2016.07.14 ms_rest_azure version 0.3.0
* Embracing latest ms_rest version [0.3.0](https://rubygems.org/gems/ms_rest)

##2016.05.19 ms_rest_azure version 0.2.3
* Support patch for long running operations. See [#1011](https://github.com/Azure/autorest/pull/1011), [#1056](https://github.com/Azure/autorest/pull/1056)
2 changes: 1 addition & 1 deletion src/client/Ruby/ms-rest-azure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,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.1.0'
spec.add_runtime_dependency 'ms_rest_azure', '~> 0.3.0'
```

Don't forget to correct the version.
Expand Down
2 changes: 1 addition & 1 deletion src/client/Ruby/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.2.3'
VERSION = '0.3.0'
end
2 changes: 1 addition & 1 deletion src/client/Ruby/ms-rest-azure/ms_rest_azure.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,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.2.1'
spec.add_runtime_dependency 'ms_rest', '~> 0.3.0'
end
2 changes: 2 additions & 0 deletions src/client/Ruby/ms-rest/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
##2016.07.14 ms_rest version 0.3.0
* Moving serialization/deserializaiton code from sdk models to client runtime. [#1106](https://github.com/Azure/autorest/pull/1106)
2 changes: 1 addition & 1 deletion src/client/Ruby/ms-rest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,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', '~> 0.1.0'
spec.add_runtime_dependency 'ms_rest', '~> 0.3.0'
```

Don't forget to correct the version.
Expand Down
2 changes: 1 addition & 1 deletion src/client/Ruby/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.2.1'
VERSION = '0.3.0'
end