From f5d688f78184a0a96249d1fc374dc3478ec3adaa Mon Sep 17 00:00:00 2001 From: Yuri Shkuro Date: Mon, 24 May 2021 17:18:30 -0400 Subject: [PATCH] Prepare release 2.29.1 Signed-off-by: Yuri Shkuro --- CHANGELOG.md | 7 ++++++- constants.go | 2 +- thrift/README.md | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a36cff62..956790ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,16 @@ Changes by Version ================== -2.29.1 (unreleased) +2.29.2 (unreleased) ------------------- - Nothing yet. +2.29.1 (2021-05-24) +------------------- +- Remove dependency on "testing" in "thrift" (#586) -- @yurishkuro + + 2.29.0 (2021-05-20) ------------------- - Update vendored thrift to 0.14.1 (#584) -- @nhatthm diff --git a/constants.go b/constants.go index c18e7684..d8eb6983 100644 --- a/constants.go +++ b/constants.go @@ -22,7 +22,7 @@ import ( const ( // JaegerClientVersion is the version of the client library reported as Span tag. - JaegerClientVersion = "Go-2.29.1-dev" + JaegerClientVersion = "Go-2.29.1" // JaegerClientVersionTagKey is the name of the tag used to report client version. JaegerClientVersionTagKey = "jaeger.version" diff --git a/thrift/README.md b/thrift/README.md index 53857df9..c4c38ae0 100644 --- a/thrift/README.md +++ b/thrift/README.md @@ -4,7 +4,7 @@ This is a partial copy of Apache Thrift v0.14.1 (https://github.com/apache/thrif It is vendored code to avoid compatibility issues with Thrift versions. -The file logger.go is modified to remove dependency on "testing" (see Issuer #585). +The file logger.go is modified to remove dependency on "testing" (see Issue #585). See: * https://github.com/jaegertracing/jaeger-client-go/pull/584