зеркало из
1
0
Форкнуть 0

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
This commit is contained in:
Vishrut Shah 2016-11-11 17:03:07 -08:00 коммит произвёл GitHub
Родитель b8a484ad6b
Коммит f41eefbbd6
7 изменённых файлов: 33 добавлений и 7 удалений

Просмотреть файл

@ -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)

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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)

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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