File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 44
55## [ Unreleased (beta)]
66
7+ ## [ 0.17.3] - 2018-11-29
8+
9+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.17.3
10+
11+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.2...v0.17.3
12+
13+ ### Fixed
14+
15+ - Bad resource names for Grape::API objects in Grape 1.2.0 (#639 )
16+ - RestClient raising NoMethodError when response is ` nil ` (#636 , #642 ) (@frsantos )
17+ - Rack middleware inserted twice in some Rails applications (#641 )
18+
719## [ 0.17.2] - 2018-11-23
820
921Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.17.2
@@ -564,8 +576,10 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
564576
565577Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
566578
567- [ Unreleased (stable) ] : https://github.com/DataDog/dd-trace-rb/compare/v0.17.1...master
568- [ Unreleased (beta) ] : https://github.com/DataDog/dd-trace-rb/compare/v0.17.1...0.18-dev
579+ [ Unreleased (stable) ] : https://github.com/DataDog/dd-trace-rb/compare/v0.17.3...master
580+ [ Unreleased (beta) ] : https://github.com/DataDog/dd-trace-rb/compare/v0.17.3...0.18-dev
581+ [ 0.17.3 ] : https://github.com/DataDog/dd-trace-rb/compare/v0.17.2...v0.17.3
582+ [ 0.17.2 ] : https://github.com/DataDog/dd-trace-rb/compare/v0.17.1...v0.17.2
569583[ 0.17.1 ] : https://github.com/DataDog/dd-trace-rb/compare/v0.17.0...v0.17.1
570584[ 0.17.0 ] : https://github.com/DataDog/dd-trace-rb/compare/v0.16.1...v0.17.0
571585[ 0.16.1 ] : https://github.com/DataDog/dd-trace-rb/compare/v0.16.0...v0.16.1
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module Datadog
22 module VERSION
33 MAJOR = 0
44 MINOR = 17
5- PATCH = 2
5+ PATCH = 3
66 PRE = nil
77
88 STRING = [ MAJOR , MINOR , PATCH , PRE ] . compact . join ( '.' )
You can’t perform that action at this time.
0 commit comments