Preparing for release of 0.6.2 of ms_rest & ms_rest_azure
This commit is contained in:
Родитель
b5cf2d4b0b
Коммит
6d5e2696d5
|
@ -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)
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче