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

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
To avoid warnings, set loose requirements on the gems in the gemspec.
  • Loading branch information
degemer committed Mar 30, 2017
1 parent ed8e60d commit feb85c7
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 5 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# CHANGELOG

0.6.0/ 2017.03.30
=================

### Changes

* [improvement] Clean setuptools remain after setup\_env. See [#48][].
* [improvement] Handle GNU sed on Mac. See [#50][].
* [improvement] Add an option in the skeleton to skip tests. See [#51][].
* [improvement] Faster requirements install. See [#54][].
* [improvement] Faster requirements install in the skeleton. See [#55][].
* [improvement] Declare the gem dependencies in the gemspec. See [#56][].
* [other] Do not call git for the user. See [#50][].
* [other] Do not suggest using the constructor in the skeleton. See [#52][].

0.5.1/ 2017.02.14
==================

Expand Down Expand Up @@ -225,5 +239,12 @@
[#45]: https://github.com/DataDog/datadog-sdk-testing/issues/45
[#46]: https://github.com/DataDog/datadog-sdk-testing/issues/46
[#47]: https://github.com/DataDog/datadog-sdk-testing/issues/47
[#48]: https://github.com/DataDog/datadog-sdk-testing/issues/48
[#50]: https://github.com/DataDog/datadog-sdk-testing/issues/50
[#51]: https://github.com/DataDog/datadog-sdk-testing/issues/51
[#52]: https://github.com/DataDog/datadog-sdk-testing/issues/52
[#54]: https://github.com/DataDog/datadog-sdk-testing/issues/54
[#55]: https://github.com/DataDog/datadog-sdk-testing/issues/55
[#56]: https://github.com/DataDog/datadog-sdk-testing/issues/56
[@ksauzz]: https://github.com/ksauzz
[@lastmikoi]: https://github.com/lastmikoi
10 changes: 5 additions & 5 deletions datadog-sdk-testing.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'datadog-sdk-testing'
s.version = '0.5.1'
s.version = '0.6.0'
s.date = '2017-02-14'
s.summary = 'Datadog Integration SDK testing/scaffolding facilities.'
s.description = 'Datadog Integration SDK testing/scaffolding gem'
Expand All @@ -25,8 +25,8 @@ Gem::Specification.new do |s|
'LICENSE']
s.homepage = 'http://rubygems.org/gems/datadog-sdk-testing'
s.license = 'MIT'
s.add_runtime_dependency 'colorize'
s.add_runtime_dependency 'httparty'
s.add_runtime_dependency 'rake'
s.add_runtime_dependency 'rubocop'
s.add_runtime_dependency 'colorize', '~> 0.8'
s.add_runtime_dependency 'httparty', '~> 0.14'
s.add_runtime_dependency 'rake', '~> 11.0'
s.add_runtime_dependency 'rubocop', '~> 0.38'
end

0 comments on commit feb85c7

Please sign in to comment.