From da217fcef65da5e7add00cadf041727ce17327da Mon Sep 17 00:00:00 2001 From: Brett Langdon Date: Thu, 7 Mar 2019 13:02:15 -0500 Subject: [PATCH] Bump to version 0.20.0 (#710) * bumping version 0.19.1 => 0.20.0 * Added 0.20.0 to CHANGELOG.md * Add fix to changelog * Reference other changes in changelog and add note about deprecation of 'Datadog::Pin' * remove uncessary newline * fix links at the end of changelog --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++++++-- lib/ddtrace/version.rb | 4 ++-- 2 files changed, 35 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2f69ed3206..e2049e02dba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,36 @@ ## [Unreleased (beta)] +## [0.20.0] - 2019-03-07 + +Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.20.0 + +Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.19.1...v0.20.0 + +This release will log deprecation warnings for any usage of `Datadog::Pin`. +These changes are backwards compatible, but all integration configuration should be moved away from `Pin` and to the configuration API instead. + +### Added + +- Propagate synthetics origin header (#699) + +### Changed + +- Enable distributed tracing by default (#701) + +### Fixes + +- Fix Rack http_server.queue spans missing from distributed traces (#709) + +### Refactored + +- Refactor MongoDB to use instrumentation module (#704) +- Refactor HTTP to use instrumentation module (#703) +- Deprecate GRPC global pin in favor of configuration API (#702) +- Deprecate Grape pin in favor of configuration API (#700) +- Deprecate Faraday pin in favor of configuration API (#696) +- Deprecate Dalli pin in favor of configuration API (#693) + ## [0.19.1] - 2019-02-07 Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.19.1 @@ -681,8 +711,9 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1 Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1 -[Unreleased (stable)]: https://github.com/DataDog/dd-trace-rb/compare/v0.19.1...master -[Unreleased (beta)]: https://github.com/DataDog/dd-trace-rb/compare/v0.19.1...0.20-dev +[Unreleased (stable)]: https://github.com/DataDog/dd-trace-rb/compare/v0.20.0...master +[Unreleased (beta)]: https://github.com/DataDog/dd-trace-rb/compare/v0.20.0...0.21-dev +[0.20.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.19.1...v0.20.0 [0.19.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.19.0...v0.19.1 [0.19.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.18.3...v0.19.0 [0.18.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.18.2...v0.18.3 diff --git a/lib/ddtrace/version.rb b/lib/ddtrace/version.rb index d46b5c9a9fd..7b137b7684f 100644 --- a/lib/ddtrace/version.rb +++ b/lib/ddtrace/version.rb @@ -1,8 +1,8 @@ module Datadog module VERSION MAJOR = 0 - MINOR = 19 - PATCH = 1 + MINOR = 20 + PATCH = 0 PRE = nil STRING = [MAJOR, MINOR, PATCH, PRE].compact.join('.')